Rajesh Deshpande
67aa1fa26a
Define container environment variables using Secret data ( #13800 )
...
* Example for injecting single secret as env variable
Define a container environment variable with data from a single Secret
* Env variable using secret data
* Update pod-single-secret-env-variable.yaml
* Adding example for multiple env variable using secrets
Adding example for multiple env variables using secrets
* Create pod-secret-envFrom.yaml
* Update pod-multiple-secret-env-variable.yaml
* Update pod-multiple-secret-env-variable.yaml
* Update pod-multiple-secret-env-variable.yaml
* Update pod-single-secret-env-variable.yaml
* Update pod-multiple-secret-env-variable.yaml
* Update pod-single-secret-env-variable.yaml
* Different ways to add env variable using secret
Adding different ways to add env variable in pod using secret
* Correcting formatting issues
Correcting formatting issues
* Correcting format issue
2019-04-14 17:48:00 -07:00
Srinivas R Kulkarni
b914148850
Update deployment.md ( #13802 )
...
.spec .selector is also a required field in deployment definition
2019-04-14 17:45:59 -07:00
Miguel Angel Medina Mondragon
e0d2b86919
add log commands with label flag ( #13804 )
...
* add log commands with label flag
* style
2019-04-14 17:44:00 -07:00
Song Kun
64700c0ab1
Use better format for kubectl install guide ( #13810 )
2019-04-14 17:41:59 -07:00
codyc
862bd49693
Provides snippet for PLEG ( #13805 )
2019-04-14 08:18:00 -07:00
Enrique Medina Montenegro
04a8c62dc9
Es/docs/tasks/tools/install kubectl.md ( #13659 )
...
* Spanish translation
* Spanish translation
* Spanish translation
* Spanish translation
2019-04-13 02:44:03 -07:00
Shuang Wang
365b8ae4ef
an offense against the style guide. ( #13794 )
...
> Use camel case for API objects
> Refer to API objects without saying “object,” unless omitting “object” leads to an awkward construction.
2019-04-12 18:18:02 -07:00
Gasmi Christophe
662d23933e
fix header and add card ( #13791 )
2019-04-11 22:32:45 -07:00
Roy Lenferink
cf86480431
Improved markdown for Italian translation ( #13785 )
2019-04-11 10:44:47 -07:00
Michele Berardi
5a7d1f6c39
Translated architecture to Italian ( #13399 )
2019-04-11 09:48:43 -07:00
Amina Waddiz
5140592708
[docs-fr] add dns policies for pods and services ( #13765 )
...
init index.md
cleanup main doc
[docs-fr] add introduction and A record
[docs-fr] add dns policies for pods and services
[docs-fr] fix netlify deploy error when reading yaml file
[docs-fr] fix typos according to pr review
[docs-fr] update reviewers
2019-04-11 02:50:12 -07:00
Paul Roth
335bf7027e
the sentence does not make sense ( #12673 )
...
I've attempted to have it make more sense by removing the word 'is'. Optionally, depending on the intended meaning, the sentence could read differently by leaving the word 'is' alone and changing the word 'through' to 'though'.
2019-04-10 00:48:12 -07:00
Jan Dolecek
ca83644032
Fix code blocks secret.md ( #13016 )
...
The formatting is currently broken because code blocks are not correctly terminated.
2019-04-10 00:46:12 -07:00
Nishanth Reddy
2e3a25069d
Added missing --rotate-server-certificates flag to kubelet cli reference ( #13586 )
2019-04-10 00:44:12 -07:00
Diego Muñoz Escalante
76fc7aa25b
Create ES resource-metrics-pipeline.md ( #13648 )
...
Add correct index file
2019-04-09 23:24:12 -07:00
Andrew Sy Kim
728e5e9649
remove docs on the PersistentVolumeLabler controller ( #12993 )
2019-04-09 22:40:12 -07:00
makocchi
49ef5c3486
Update command outputs to k8s 1.13 based and split command outputs ( #13014 )
...
* Update command outputs to k8s 1.13 based and split command outputs
* Add comments before commands
* fix comments for consistency reason
2019-04-09 22:38:14 -07:00
RA489
0ceb362beb
Update abac.md ( #13067 )
...
* Update abac.md
* Update abac.md
* Update abac.md
2019-04-09 22:34:13 -07:00
Taher Bohari
000aa4520e
Update podManagementPolicy of StatefulSet object ( #13210 )
...
In given manifest, podManagementPolicy is set as Parallel, but in later section of page, the console logs of "kubectl get pods -w -l app=zk" command displays ordered behavior, which is not the actual result in case of Parallel option.
Sample logs from doc :
NAME READY STATUS RESTARTS AGE
zk-0 0/1 Pending 0 0s
zk-0 0/1 Pending 0 0s
zk-0 0/1 ContainerCreating 0 0s
zk-0 0/1 Running 0 19s
zk-0 1/1 Running 0 40s
zk-1 0/1 Pending 0 0s
zk-1 0/1 Pending 0 0s
zk-1 0/1 ContainerCreating 0 0s
zk-1 0/1 Running 0 18s
zk-1 1/1 Running 0 40s
zk-2 0/1 Pending 0 0s
zk-2 0/1 Pending 0 0s
zk-2 0/1 ContainerCreating 0 0s
zk-2 0/1 Running 0 19s
zk-2 1/1 Running 0 40s
## here pods are created in order
Actual results after applying the given manifest :
[taher@kubernetes-docker ~]$ kubectl apply -f zookeeper.yaml
service/zk-hs created
service/zk-cs created
poddisruptionbudget.policy/zk-pdb created
statefulset.apps/zk created
[taher@kubernetes-docker ~]$ kubectl get pods -w -l app=zk
NAME READY STATUS RESTARTS AGE
zk-0 0/1 Pending 0 3s
zk-1 0/1 Pending 0 3s
zk-2 0/1 ContainerCreating 0 3s
zk-1 0/1 Pending 0 4s
zk-0 0/1 Pending 0 4s
zk-1 0/1 Pending 0 5s
zk-0 0/1 Pending 0 5s
zk-1 0/1 Pending 0 5s
zk-1 0/1 ContainerCreating 0 5s
zk-0 0/1 Pending 0 5s
zk-2 0/1 Running 0 19s
zk-1 0/1 Running 0 24s
zk-2 1/1 Running 0 35s
zk-1 1/1 Running 0 37s
## here pods are created in parallel
Resolution :
Either change the value of podManagementPolicy option to OrderedReady or remove that option, so that StatefulSet will take it's default behavior.
2019-04-09 22:32:12 -07:00
Michael Michael
26851b86a6
Update intro-windows-in-kubernetes.md ( #13739 )
2019-04-09 22:30:12 -07:00
Luc Perkins
645d3d8ded
Create table shortcode that allows for table captions ( #13117 )
...
* Create table shortcode for captions
* Allow for tables without captions
* Add table documentation in shortcodes guide
* Docs cleanup
2019-04-09 22:20:12 -07:00
Daniel Lipovetsky
783a2d5289
Document workaround for kubeadm Taints field issue ( #13343 )
...
* Document workaround for kubeadm Taints field issue
* Remove trailing whitespace in kubeadm troubleshooting
2019-04-09 22:14:12 -07:00
Subrata Paul
bd8721baad
Updated horizontal-pod-autoscale.md file with newer command names. ( #13519 )
...
HPA command names updated to --horizontal-pod-autoscaler-downscale-stabilization in the document.
2019-04-09 19:02:12 -07:00
Rajesh Deshpande
ffa2996402
Details about multiple namespaces ( #13539 )
...
k8s does not support nested namespaces but this is not specified anywhere in the document. I find this is the right place to document it as we introduce namespace concept here. Also these details are important to mention specifically for users who are coming from Docker UCP background.
2019-04-09 18:58:12 -07:00
Ricardo Cordeiro
5d83dcbf46
Fixes `runAsGroup` security context example ( #13535 ) ( #13538 )
2019-04-09 18:56:12 -07:00
Chas Schley
a80483bb52
The output from 'kubectl get services my-service' will indicate a LoadBalancer type, not a ClusterIP. ( #13560 )
2019-04-09 18:46:13 -07:00
Karen Bradshaw
0c568fa9c9
fix note shortcode, lists ( #13587 )
...
* fix note shortcode, lists
- fix note shortcode for use in lists
- add example in style guide
* add more items to list
* update warning, caution, minor tweaks
* more updates
2019-04-09 18:44:12 -07:00
Marc Sensenich
8c6f0d39db
Correct spelling kubeadm-upgrade-1-14.md ( #13619 )
...
Ugrade => Upgrade
2019-04-09 18:36:12 -07:00
Supriya Sirbi
a4629ca423
Issue #13651 Update Debug Services ( #13652 )
...
Change the command to use Alpine Image instead of Busy Box
2019-04-09 18:34:12 -07:00
goodluckbot
d02c3ca934
Update default admission plugins ( #13719 )
...
Update default admission plugins in admission-controllers.md
TaintNodesByCondition is newly added one.
And also update 1.13 to 1.14.
2019-04-09 18:22:15 -07:00
Abhishek Jaisingh
0173c3a567
Add Info about OOM Kill ( #13723 )
...
* Add info about OOM Kill
Add details about OOM Kill in case if memory limit is not specified
* Fix Minor Typo
2019-04-09 18:20:12 -07:00
Himanshu Pandey
cb86f99b5b
Removed extra "```shell" from the output box ( #13736 )
2019-04-09 18:18:13 -07:00
Kaitlyn Barnard
5d459630be
Update pick-right-solution.md ( #13731 )
2019-04-09 18:16:11 -07:00
Karen Bradshaw
cd44e3d73d
fix headers for federation tool references ( #13726 )
2019-04-09 18:14:14 -07:00
RaviSantosh Gudimetla
d80e7f66c5
Remove enable resource quota note ( #13732 )
...
* Remove enable resource quota note
As of now, `ResourceQuotaScopeSelectors` is enabled by default, since it's in beta. So, let's remove it.
* Update resource-quotas.md
2019-04-09 18:12:12 -07:00
Claudia J.Kang
34074d33ff
First Korean I10n work for release-1.14 ( #13730 )
...
* First Korean I10n work for release-1.14
- ko: Fix nav-menu sync in tutorials/statefulset #13374 (#13474 )
- ko: add outdated files in dev-1.14-ko.1 branch (#13473 )
- Translate title of concepts/../image.md Ko (#13507 )
- ko: add translation tutorial/stateful-application/cassandra #12450 (#13515 )
- Translate reference/kubectl/cheatsheet in Korean (#13549 )
- Translate tasks/access-application-cluster/access-cluster in Korean (#13565 )
- ko: add tutorials/stateful-application/mysql-wordpress-persistent-vol… (#13516 )
- Issue 12838 object management kubectl imperative config (#13657 )
- Translate standardized glossary Tag Fandamental in Korean (#13552 )
Co-authored-by: Kim Young Dae <38598117+zer0big@users.noreply.github.com>
Co-authored-by: Yoon <learder@gmail.com>
Co-authored-by: lapee79 <lapee79@gmail.com>
Co-authored-by: Jesang Myung <jesang.myung@gmail.com>
Co-authored-by: Seokho <shsongist@gmail.com>
Co-authored-by: Claudia J.Kang <claudiajkang@gmail.com>
Co-authored-by: June Yi <june.yi@samsung.com>
* Fix conflict : pick-right-solution
2019-04-09 17:42:12 -07:00
Shashank Patel
866fc48195
fix typo in ha page ( #13735 )
...
Associated with #13734
2019-04-09 13:38:47 -07:00
Shashank Patel
6219f0235d
fix typo in device-plug page ( #13721 )
...
Associated with #13720
2019-04-09 09:17:59 -07:00
Shashank Patel
85bf8f1872
fix type in cluster admin addons page ( #13718 )
...
Associated with #13717
2019-04-09 09:15:59 -07:00
Shashank Patel
ede704f3d3
fix type in cluster-admin-networking page ( #13716 )
...
Associated with #13715
2019-04-09 09:14:00 -07:00
Shashank Patel
432d298753
fix typo resource quota page ( #13712 )
...
Associated with #13710
2019-04-09 09:12:01 -07:00
Shashank Patel
3eaf5a61be
fix type in volume page ( #13707 )
...
Associated with #13706
2019-04-09 09:10:01 -07:00
Shashank Patel
ff7c90e04c
fixeed typo on storage-limit page ( #13709 )
...
Associated with #13708
2019-04-09 07:49:11 -07:00
Shashank Patel
5c93be0e11
fix typo pod security page ( #13714 )
...
Associated with #13713
2019-04-09 04:49:06 -07:00
zhangqx2010
28dacc8c09
update start.md on `Submit a pull request` topic ( #13633 )
...
related issue #13629
2019-04-08 22:39:04 -07:00
Zhimin Wu
0560786472
Update garbage-collection.md ( #13662 )
2019-04-08 22:37:03 -07:00
Nick Veitch
a1b0c2e816
Update Ubuntu docs ( #13594 )
...
* update links to point to official docs
* delete unmaintained content
* Add page to retain url and direct readers to appropriate docs
2019-04-08 19:31:03 -07:00
Shashank Patel
522b01480d
fix typo in volume page ( #13703 )
...
Associated with #13702
2019-04-08 18:25:05 -07:00
Karen Bradshaw
50050dfb1b
clean-up, clarify glossary: taints and tolerations ( #13684 )
2019-04-08 18:23:03 -07:00
AJ Moore
91397935a7
Update namespaces.md ( #13682 )
...
Updates `namespaces` command to `namespace`
2019-04-08 18:21:04 -07:00
Rajesh Deshpande
d3cd85d496
Correcting API version in example ( #13670 )
...
API version of KubeSchedulerConfiguration is corrected to kubescheduler.config.k8s.io
2019-04-08 18:15:07 -07:00
Supriya Sirbi
5f6cc2de23
Issue #13506 Update Pod Security Policy ( #13655 )
2019-04-08 18:13:05 -07:00
Zach Corleissen
a2e97664c6
Auto-label, revise OWNERS ( #13645 )
...
Whitespace
2019-04-08 18:11:04 -07:00
Ismail Alidzhikov
87a2edbc10
Update api-changes link ( #13613 )
...
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-04-08 18:09:03 -07:00
Manuel Rüger
8f5fbc0222
kubelet-integration: Update kubeadm config command ( #13636 )
...
print-default subcommand got removed in 1.14
See: https://github.com/kubernetes/kubernetes/pull/71467
Signed-off-by: Manuel Rüger <manuel@rueg.eu>
2019-04-08 18:07:04 -07:00
Supriya Sirbi
552f6ab73a
Issue #13637 Update developing-cloud-controller-manager.md ( #13654 )
...
Register CloudProvider Interface link added
2019-04-08 18:05:05 -07:00
AbdullahBM
cc09428797
setting current context and finding running pod's YAML ( #13665 )
2019-04-08 18:03:04 -07:00
Tennis Smith
b809bdcba0
Add 'get-contexts' ( #13677 )
...
Added `kubectl config get-contexts` for completeness
2019-04-08 18:01:04 -07:00
Joseph Heck
f5496b5b5c
minor link update with the migration of conventions in the community repo ( #13681 )
2019-04-08 17:59:03 -07:00
Shashank Patel
8596438035
fix typo in volumes pages ( #13700 )
...
Associated with #13699
2019-04-08 17:01:05 -07:00
Shashank Patel
a70ded41b9
fix typo in volume page ( #13698 )
...
Associted with #13697
2019-04-08 16:53:02 -07:00
Shashank Patel
d12b07d6ea
fix type cronjob ( #13696 )
...
Associated with #13695
2019-04-08 16:45:03 -07:00
Shashank Patel
a08f7c0714
fix typo deployment page ( #13694 )
...
Associated with #13693
2019-04-08 16:39:03 -07:00
Shashank Patel
adc61ddd79
fixed type in disruption page ( #13692 )
...
Associated with #13691
2019-04-08 16:29:05 -07:00
Shashank Patel
786ad4390d
fix typo in pod-lifecycle ( #13689 )
...
Asscociated with #13688
2019-04-08 15:36:38 -07:00
Shashank Patel
d8a198e93d
Fix typo in API page ( #13687 )
...
Associated with #13686
2019-04-08 15:16:26 -07:00
Alex Contini
71e9a63d4b
add Nokia case study ( #13676 )
2019-04-08 15:14:27 -07:00
yanghaichao12
e119b41336
Fix typos ( #13376 )
2019-04-08 06:30:26 -07:00
Rajesh Deshpande
4d2bb1e5bf
Incorrect details about startingDeadlineSeconds.. ( #13530 )
...
On this page, the default value of startingDeadlineSeconds is mentioned as 100 seconds which is not true. So removing this statement.
2019-04-08 06:22:25 -07:00
ethan
8f14350a47
correct container hyperlinks in init container ( #12387 )
...
* correct container hyperlinks in init container
* correct zh trans and update anchor inside page
2019-04-08 05:46:29 -07:00
Blade
36f269696a
update zh kubelet-config-file doc ( #13495 )
...
* update zh kubelet-config-file doc
* change kubelet config types address
* add space between en words and zh words
* revert en version change
2019-04-07 23:28:24 -07:00
Ismail Alidzhikov
5125996183
Update fluentd image ( #13661 )
...
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-04-07 20:34:24 -07:00
Benedikt Rollik
0ee892d4ad
[DOCS-DE] Tutorial hello-minikube ( #13526 )
...
* Tutorial hello-minikube
* Fixed remarks
2019-04-05 10:27:21 -07:00
Benedikt Rollik
12c51ef8e9
Install kubectl ( #13639 )
2019-04-05 10:25:22 -07:00
Benedikt Rollik
dcf1b736a8
[DOCS-DE] Tutorial Install Minikube ( #13642 )
...
* setup_minikube
* fixed typo
2019-04-05 10:21:20 -07:00
Benedikt Rollik
8e6e12ed9b
Add kubectl cheat sheet ( #13635 )
2019-04-05 10:17:20 -07:00
Benedikt Rollik
a48a32e6c5
[DOCS-DE] Content Concepts ( #13529 )
...
* content-concepts
* Fixed typos
2019-04-05 10:01:20 -07:00
Benedikt Rollik
3f219b1a76
[DOC-DE] Components ( #13531 )
...
* Components
* Update content/de/docs/concepts/overview/components.md
Co-Authored-By: bene2k1 <brollik@scaleway.com>
* Added missing files
* Translation components
* Update components
2019-04-05 09:55:21 -07:00
Alex Contini
c70dd4f0c4
urgent!! typo in case study - removed extra letter ( #13638 )
2019-04-05 08:33:22 -07:00
Rémy Léone
c00262c2d3
Translate partners to French ( #13389 )
...
Add includes and translating to French
Co-Authored-By: Jean-Yves Gastaud <jygastaud@users.noreply.github.com>
2019-04-05 07:01:22 -07:00
Shashank Patel
8da4c1f1a9
Fix typo style guide ( #13626 )
...
Associated with #13625
2019-04-04 15:35:19 -07:00
Shashank Patel
1c5188cc15
Fix typo in /docs/concepts/containers/images/ ( #13628 )
...
Associated with #13627
2019-04-04 15:31:20 -07:00
Alex Contini
0c92b3d194
add China Unicom case study and update Case Study homepage with new f… ( #13557 )
...
* add China Unicom case study and update Case Study homepage with new features
* Update index.html
* Update index.html
* Update index.html
* updates
2019-04-04 14:41:18 -07:00
Shashank Patel
e84079eedf
Fix typo ( #13624 )
...
Associated with #13623
2019-04-04 14:33:20 -07:00
Shashank Patel
a7427a627a
Fix typo in service-networking page ( #13622 )
...
Associated with #13621
2019-04-04 14:07:18 -07:00
Shashank Patel
1aff855615
fix typo in home page ( #13620 )
...
associated with #13618
2019-04-04 14:05:19 -07:00
Rémy Léone
5bf4b33316
Translate kubernetes-api.md to French ( #13435 )
2019-04-04 13:33:20 -07:00
Rael Garcia
f1627103a0
Init Spanish translation ( #13543 )
...
* Add OWNERS information for sig-docs-es
* Add spanish README file
* Add Spanish language section
* Add headless _common-resources section
* Add case-studies section
* Add docs section
* Add search page
* Add overview section
* Add main content page
* Add i18n strings for Spanish language
* Add alexbrand as OWNER and REVIEWER
* Add glo-pena as REVIEWER
* Add headless include section
* Add partners section
* Add blog section
* Add Code of Conduct manifests
* Add supported-doc-versions page
* Add community site
* Add sitemap
* Remove overview section
* Add initial home version
* Rework phrase
* Fix typo
* Add update-user-guid-links script
* Upload Spanish CoC updated version
https://github.com/cncf/foundation/commit/e2a956
* Rework phrase
* Fix typo in community index
* Fix informal person usage
* Translate sitemap page
* Add electrocucaracha as REVIEWER
* Add landing page for /es/docs
* Remove home pages from initial translation
* Upload Spanish CoC updated version
https://github.com/cncf/foundation/commit/6474dfd
* Add more information to the docs landing
2019-04-04 13:11:20 -07:00
Shashank Patel
a03303dca5
Fixed type in intermediate contributor page ( #13617 )
...
Associated with #13616
page link: https://kubernetes.io/docs/contribute/intermediate/#contribute-to-other-repos
2019-04-04 12:57:19 -07:00
Roy Lenferink
87de499261
Fixed broken links to /docs/setup/scratch ( #13614 )
2019-04-04 10:55:52 -07:00
zhangqx2010
ff061697cf
Update start.md ( #13610 )
...
Change the pencil icon location from `top left` to `top right`
2019-04-04 10:29:53 -07:00
yanghaichao12
ab98b03e8b
Fix typos ( #13609 )
2019-04-04 10:27:51 -07:00
Shashank Patel
b2b29a5e17
Add Logging to glossary ( #13608 )
...
Associated with #5993
2019-04-04 10:25:52 -07:00
Blade
3dac0bb857
update url of kubelet-config-file types ( #13603 )
2019-04-04 10:23:53 -07:00
Rémy Léone
9476c2599a
Remove obsolete remark. German translation exists ( #13575 )
2019-04-04 10:21:52 -07:00
Michelle Au
7ed8f1bd4b
Local PV GA blog post ( #13600 )
2019-04-04 08:04:57 -07:00
Rémy Léone
b3b46b0a86
Translate the contribute start to French ( #13429 )
...
Co-Authored-By: Jean-Yves Gastaud <jygastaud@users.noreply.github.com>
2019-04-04 04:48:50 -07:00
Joe
a7eeeb77eb
fix typo ( #13601 )
...
一 => 已
2019-04-03 22:28:51 -07:00
Kevin Woo
41f1397e56
add whitespace for clarity ( #13580 )
2019-04-03 09:27:49 -07:00
Joe
e34b0532a9
Fixed typo ( #13588 )
...
群集 => 集群
2019-04-03 02:49:43 -07:00
Roy Lenferink
3c1faef53a
Removed unneeded de/index.md ( #13548 )
2019-04-02 12:25:18 -07:00
Roy Lenferink
24261ee01a
Updated links on kubectl documentation page ( #13579 )
2019-04-02 11:25:20 -07:00
jwalter
5ec608971a
Fixed typo ( #13570 )
...
kusotmization -> kustomization
2019-04-02 05:32:36 -07:00
Kaitlyn Barnard
3d75e6a881
Adding 5 Days of K8s post on Windows Containers ( #13558 )
...
* Adding 5 Days of K8s post on Windows Containers
* Updating line spacing
2019-04-01 16:26:36 -07:00
Kai Paro
14dddbfd97
Update install-kubeadm.md ( #13514 )
...
original link is dead
2019-04-01 12:56:34 -07:00
Taher Bohari
f5f13f9a0f
Update console output as per configmap data ( #13540 )
...
Actual Console Output :
root@ubuntu:~/practice1$ kubectl create -f https://k8s.io/examples/configmap/configmap-multikeys.yaml
configmap/special-config created
root@ubuntu:~/practice1$ kubectl get configmaps special-config
NAME DATA AGE
special-config 2 17s
root@ubuntu:~/practice1$ kubectl get configmaps special-config -o yaml
apiVersion: v1
data:
SPECIAL_LEVEL: very
SPECIAL_TYPE: charm
kind: ConfigMap
metadata:
creationTimestamp: "2019-03-30T06:52:22Z"
name: special-config
namespace: default
resourceVersion: "1404079"
selfLink: /api/v1/namespaces/default/configmaps/special-config
uid: 5ec833dd-52b8-11e9-b4c7-005056ad4679
root@ubuntu:~/practice1$ kubectl create -f https://k8s.io/examples/pods/pod-configmap-volume.yaml
pod/dapi-test-pod created
root@ubuntu:~/practice1$ kubectl logs dapi-test-pod
SPECIAL_LEVEL
SPECIAL_TYPE
Need to update this manfiest as well : pods/pod-configmap-volume-specific-key.yaml
2019-04-01 09:22:36 -07:00
makocchi
58dcb32e32
remove command prompts ( #13418 )
2019-04-01 09:20:35 -07:00
Rémy Léone
32a249d4fc
Translate the index page to French ( #13397 )
2019-04-01 06:06:34 -07:00
Philippe MARTIN
773468af29
docs-fr | concepts | workloads | pod overview ( #13240 )
2019-04-01 00:52:33 -07:00
Benedikt Rollik
6282ede2bf
building_release ( #13527 )
2019-03-31 09:52:32 -07:00
Qiming
d1ceb7cacd
Fix link in pod overview ( #13517 )
...
Closes : #12952
2019-03-31 05:18:32 -07:00
Yongkun Anfernee Gui
7c985a1545
Connection reset blog post ( #13456 )
...
* Connection reset blog post
* Update and rename 2019-03-27-kube-proxy-subtleties-debugging-an-intermittent-connection-resets.md to 2019-03-29-kube-proxy-subtleties-debugging-an-intermittent-connection-resets.md
2019-03-29 13:10:12 -07:00
Qiming
1971334632
Fix file encoding for kubectl markdown ( #13518 )
...
Closes : #12964
2019-03-28 20:22:14 -07:00
Vladimir Vivien
e3ee3f86cf
Reversal for CSI ephemeral inline volume doc ( #13403 )
2019-03-28 16:36:14 -07:00
Kaitlyn Barnard
9d825082b1
Blog post on Minikube ( #13509 )
...
* blog post on Minikube
* Updates
* Update 2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md
* Update 2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md
2019-03-28 16:29:57 -07:00
Zach Corleissen
07deacdaef
Match the wording with the workflow ( #13511 )
2019-03-28 15:33:57 -07:00
Benedikt Rollik
8deb0aba8c
German Docs home ( #13508 )
...
* Hompage German doc
* Removed approvers from file
* Fixed typo
2019-03-28 15:23:57 -07:00
Benedikt Rollik
ab30d75137
Init German translation of Architecture Node ( #13449 )
2019-03-28 12:31:56 -07:00
Taher Bohari
f01978c872
Update configure-upgrade-etcd.md ( #13505 )
2019-03-28 11:57:56 -07:00
Jordan Liggitt
026e792bc8
Update issues landing page ( #13503 )
2019-03-28 11:45:59 -07:00
Oussema CHERNI
a0e0de90c2
Add Supported Versions of the Documentation link in docs home ( #13499 )
2019-03-28 08:58:45 -07:00
Alexis Blandin
89f1f6c4c1
Typo update ( #13423 )
...
Kube(r)netes
2019-03-28 05:20:43 -07:00
Rémy Léone
ba7dc2a286
Translate Federation API to French ( #13433 )
2019-03-28 02:22:46 -07:00
Reppad
4ffc97c36c
Fix French translation of hello-minikube.md ( #13485 )
...
kubectl commands should not be translated.
"Déploiements de kubectl" -> "kubectl get deployments"
2019-03-28 02:02:43 -07:00
Karen Bradshaw
91ac5c6044
fix links in windows-nodes, runtimeClass ( #13486 )
2019-03-27 20:34:44 -07:00
Tim Bannister
4fd724ba09
Add glossary entries for static and mirror pods ( #12684 )
...
* Add entries for static and mirror pods
* Tweak wording
Co-Authored-By: Zach Arnold <me@zacharnold.org>
* Write kubelet lower case
* Revise wording
2019-03-27 17:26:43 -07:00
James Peach
3991177042
Fix the spelling of 'available'. ( #13483 )
2019-03-27 16:46:48 -07:00
yanghaichao12
a1453ca69c
Fix typos ( #13476 )
2019-03-27 16:44:47 -07:00
Alexis Blandin
b97f6534d6
Missing french translation ( #13443 )
2019-03-27 16:42:48 -07:00
kenveski
a7f1bf394b
Update link of spec ( #13437 )
...
Old link points to https://github.com/kubernetes/community/blob/master/contributors/devel/api-conventions.md#spec-and-status which will be removed after 2019-07-01 or the release of kubernetes 1.15, whichever comes first.
New link: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
2019-03-27 16:40:48 -07:00
Oleg Atamanenko
691d84cb86
Fixed broken link rendering ( #13413 )
...
Fixed broken link rendering
2019-03-27 16:38:47 -07:00
Arthur Deschamps
a00049f411
Update namespaces-walkthrough.md ( #13388 )
2019-03-27 16:36:47 -07:00
avigailof
5dc88b71da
Add missing spaces (+1 squashed commit) ( #13345 )
...
Squashed commits:
[72812d1f6] Update pick-right-solution.md (+1 squashed commit)
Squashed commits:
[0aa91a8cc] Update pick-right-solution.md
2019-03-27 16:34:48 -07:00
chenrui
e9513c654b
Fix relative links issue in fr content ( #13311 )
...
* `https://kubernetes.io/docs/ ` -> `/docs/`
* Update the links to localized ones
2019-03-27 16:32:48 -07:00
Liping Mao
95629e7eb3
Fix StorageObjectInUseProtection format in doc ( #13294 )
...
* Fix StorageObjectInUseProtection format in doc
Fix StorageObjectInUseProtection format to follow other admission controllers in doc.
* remove {#storageobjectinuseprotection}
2019-03-27 16:30:49 -07:00
Tim Bannister
8ac581b50e
Add CRI to glossary ( #13024 )
2019-03-27 16:26:48 -07:00
Tim Bannister
784201de61
Note Google Cloud needs of Service Cloud Installer ( #13243 )
2019-03-27 22:28:59 +08:00
Jim Angel
13ab6992ce
Update _index.md ( #13467 )
2019-03-27 21:58:36 +08:00
Qiming
8858299bfa
Reference documentation for kube components ( #13444 )
2019-03-27 15:58:19 +08:00
Babak "Bobby" Salamat
bbe35dcaae
Change API version to v1 in exmaples, plus minor tweaks ( #13457 )
2019-03-27 15:50:29 +08:00
Rajesh Deshpande
91f73900db
Correcting statement about Service ports ( #13337 )
...
* Correcting statement about Service ports
Correcting details about service ports and protocol. Removed statement saying Service supports the single port definition only and added details about multiport definitions.
* Correcting format changes
Correcting format changes as per feedback from reviewer.
2019-03-27 15:29:52 +08:00
Patrick
fd51c68e80
changing references to metrics-server to resource-metrics-pipeline from core-metrics-pipeline ( #13446 )
2019-03-27 14:03:01 +08:00
Mark Janssen
a60b1425ad
Update containerd installation instructions ( #13052 )
...
Use apt/yum instead of tarball-based installation.
2019-03-26 15:04:16 -07:00
Benedikt Rollik
a5ddc03b4f
Init German translation ( #13340 )
...
* Init German translation
* Removed EN content
* Removed binary files, unnesscary files
* Fixed typo, added rlenferink to owners file for german content
* Removed English content
* Add missing case-studies link
* Removed css
2019-03-26 13:37:19 -07:00
Alexis Blandin
bb49893367
Fixing typo ( #13450 )
...
le reste(r) du cluster
2019-03-26 09:21:22 -07:00
Craig Peters
eeb2877345
Fixed minor issues in Windows section ( #13451 )
...
Fixed grammar in the statement about Windows containers. Also indicated that GMSA support is alpha
2019-03-26 08:19:19 -07:00
Pancongwen
369f8d3053
Update kubeadm-upgrade-1-13.md ( #13438 )
...
fix typo of 'Ugrade'
2019-03-26 08:17:24 -07:00
Oussema CHERNI
04974542f1
Add building a release link in docs home ( #13393 )
2019-03-26 07:57:21 -07:00
Naoki Oketani
f6f40d5d5b
fix a broken link ( #13421 )
2019-03-26 07:03:24 -07:00
yanghaichao12
7a97425205
Fix typos ( #13422 )
2019-03-26 07:01:24 -07:00