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
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
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
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
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
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
Kevin Woo
41f1397e56
add whitespace for clarity ( #13580 )
2019-04-03 09:27:49 -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
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
Qiming
d1ceb7cacd
Fix link in pod overview ( #13517 )
...
Closes : #12952
2019-03-31 05:18:32 -07:00
Vladimir Vivien
e3ee3f86cf
Reversal for CSI ephemeral inline volume doc ( #13403 )
2019-03-28 16:36:14 -07:00
Zach Corleissen
07deacdaef
Match the wording with the workflow ( #13511 )
2019-03-28 15:33:57 -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
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
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
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