4963 Commits

Author SHA1 Message Date
zhaojizhuang 7beee58927 fix example error when use kubectl get -f 2020-11-20 23:59:51 +08:00
serewicz 07a8b3315d Update container-runtimes.md
The current command on line 125 throws a permission error. The sudo elevation of rights applies to the containerd command, not the write (>) to a file owned by root.

This is the command as copied from the current page:
student@master:~$ sudo containerd config default > /etc/containerd/config.toml
-bash: /etc/containerd/config.toml: Permission denied

Instead leverage sudo tee. It works and no more error: 
student@master:~$ containerd config default | sudo tee /etc/containerd/config.toml
2020-11-20 09:16:59 -06:00
Mark Rossetti b41ee25727 doc updates for graduating Windows + containerd support to stable (#24862)
fixing content in tabs on adding-windows-nodes.md

reworking tabbed content on adding-windows-nodes.md

intro-windows-in-kubernetes.md

Updating Windows pause image details

PR feedback for adding-windows-nodes.md

Updating comments got GMSA on containerD
2020-11-20 07:10:51 -08:00
Kubernetes Prow Robot 2c2cdeb5d8 Merge pull request #24908 from neolit123/1.20-upgrade-docs
kubeadm: update the upgrade documentation for 1.20
2020-11-20 06:58:51 -08:00
Kubernetes Prow Robot d63933db6e Merge pull request #24415 from sftim/20201007_remove_cluster_management_task
Remove cluster management task
2020-11-20 06:52:51 -08:00
Tim Bannister 59dcd57cc9 Revise cluster management task
After removing the sections of the page that are not in line with the
content guide, there is little left.

Edit pages that link to removed task to no longer link there.
Redirect using 302 status so that there is a future opportunity to reinstate
the page or something like it.

- Avoid links to removed cluster management task
- Broaden applicability of “Safely Drain A Node”
- Add (stub) cluster upgrade task page
- Add a basic page about upgrading your cluster.
- Add a task page about enabling or disabling HTTP APIs
2020-11-20 10:22:25 +00:00
David Porter 13cc09ff08 Add graceful node shutdown feature gate 2020-11-20 07:19:09 +00:00
Kubernetes Prow Robot 1e38b53fc8 Merge pull request #25073 from tengqm/tweak-binpacking
Tweak page style for resource-bin-packing
2020-11-19 18:30:51 -08:00
Léopold Jacquot 937ddcea5a Improve Taints and Tolerations example 2020-11-19 22:17:34 +01:00
Kubernetes Prow Robot 11d11a6adc Merge pull request #25122 from Marusyk/25118
Remove automatic index from tutorials list
2020-11-19 12:52:52 -08:00
Roman Marusyk 7ae8024f03 Remove automatic index from tutorials list 2020-11-19 22:26:59 +02:00
Lubomir I. Ivanov b675adf796 kubeadm: upgrade the upgrade documentation for 1.20
Update the kubeadm upgrade documentation:
- Re-order the steps to drain / upgrade kubelet/kubectl / uncordon
- Remove the detailed output from apply and plan.
- Use {{ skew ... }} markers so that we can avoid more verbose changes
to the document.
- Apply minor / general cleanup (whitespace, missing ':')
2020-11-19 22:06:45 +02:00
Kubernetes Prow Robot 5548e3f7c9 Merge pull request #25090 from nodecaf/patch-1
Update taint-and-toleration.md
2020-11-19 10:40:51 -08:00
mkontani c2a33c3403 fix dex/kubernetes link 2020-11-19 18:09:22 +00:00
Somtochi Onyekwere ba77c903ed Merge remote-tracking branch 'upstream/master' into dev-1.20 2020-11-19 17:09:49 +01:00
TAKAHASHI Shuuji 52a54dbf01 Update the URL of krew plugin list 2020-11-18 22:59:14 -05:00
Kubernetes Prow Robot 35b3eba07d Merge pull request #24643 from cognifloyd/patch-1
Fix minor typo in StatefulSets docs
2020-11-18 09:58:05 -08:00
Sundeep Malladi 97629eba26 Update configmap.md 2020-11-18 10:40:55 -06:00
Kubernetes Prow Robot 2faaed676c Merge pull request #24874 from janosi/mixedprotocollb
Document the support of mixed protocol values in the LoadBalancer type of Services
2020-11-18 07:00:06 -08:00
Kubernetes Prow Robot 754db5345e Merge pull request #25089 from scoulomb-dup-fork/cm-cmd-args
Improve configmap usage as pod command and args
2020-11-18 06:54:05 -08:00
Kubernetes Prow Robot 8d225a1c73 Merge pull request #25088 from jjasghar/patch-1
Update health-checks.md
2020-11-18 06:28:06 -08:00
Jordan Liggitt 8d96fcb423 Update GC cross-namespace note 2020-11-18 09:14:07 -05:00
Qiming Teng 2c38cb1bdc Tweak page style for resource-bin-packing 2020-11-18 16:34:09 +08:00
Kubernetes Prow Robot cc0d8b78ad Merge pull request #25068 from scoulomb-dup-fork/cm
Use configmap inside a k8s pod command, as entrypoint is docker specific
2020-11-17 22:54:04 -08:00
ramnar 4ed2587df3 implemented review comments 2020-11-18 10:03:23 +05:30
Kubernetes Prow Robot 606d0da197 Merge pull request #25079 from mysunshine92/update-feature-gates-ServiceAppProtocol
Update feature-gates: delete redundant description for ServiceAppProtocol
2020-11-17 18:34:05 -08:00
wangyamei 9ff6274c68 Update feature-gates: delete redundant description for ServiceAppProtocol 2020-11-18 10:12:32 +08:00
Sylvain COULOMBEL 08fbeb5953 Use configmap inside a k8s pod command, as entrypoint is docker specific 2020-11-17 22:34:17 +01:00
nodecaf 24bd49980b Update taint-and-toleration.md
Missing key=value in the key taint removal example
2020-11-18 08:31:36 +11:00
Sylvain COULOMBEL 1ec78b1f28 Improve configmap usage as pod command and args 2020-11-17 21:54:25 +01:00
JJ Asghar 3be56a6099 Update health-checks.md
Looks like the formatting for ```shell isn't outputting correctly on the page.

Signed-off-by: JJ Asghar <jjasghar@gmail.com>
2020-11-17 14:45:19 -06:00
Laszlo Janosi c640aee603 explain the new MixedProtocolLBService feature flag 2020-11-17 19:49:17 +00:00
Kubernetes Prow Robot de6d96dc5c Merge pull request #25083 from eyenx/patch-2
Update dead Link to Docker EE Installation
2020-11-17 10:58:05 -08:00
SHARATH ARADHYAMATH 983df6134c Fix typo in container restart policy #25041
Issue: https://github.com/kubernetes/website/issues/25041

Description: Missing space in the word "forthat", it should be "for that".

Fix: Fixed the missing space in "forthat" under the topic "Container restart policy".

Doc link: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy
2020-11-17 20:11:39 +05:30
Toni Tauro ccbab9c9d6 Update dead Link to Docker EE Installation
Link to official documentation. Mirantis Link is dead (404)
2020-11-17 14:33:43 +01:00
Kubernetes Prow Robot ce40d8da83 Merge pull request #24538 from Cweiping/feature/fix_node-conformance_apiserver_adress_error
fix node-conformance apiserver adress flag error
2020-11-16 18:46:04 -08:00
Weiping Cai e245787641 fix node-conformance apiserver adress error
Signed-off-by: Weiping Cai <weiping.cai@daocloud.io>
2020-11-17 10:11:45 +08:00
Shihang Zhang b9cd9ddaa4 add description for CSIServiceAccountToken 2020-11-16 18:06:09 -08:00
Kubernetes Prow Robot e5f81e70fa Merge pull request #25050 from pierrchen/etcdSetup
kubeadm: add instruction to check kubelet status
2020-11-16 16:22:05 -08:00
Kubernetes Prow Robot d249077048 Merge pull request #24907 from neolit123/1.20-master-label
kubeadm: remove general output from "kubeadm init"
2020-11-16 14:46:04 -08:00
Tim Bannister 304661b156 Update cluster auditing task page
Tidying; also drop details of third-party audit configuration

- aggregated API servers
- remove examples of log shipping with fluentd and Logstash

These examples would find a better home in a blog article or elsewhere
on the web. For example, a new blog article that provides detailed
advice about how to deploy log aggregation, configure log shipping into
the aggregator, and protect the audit logs from tampering.
2020-11-16 22:34:04 +00:00
Lubomir I. Ivanov c6ac783000 manual-rotation-of-ca-certificates: use kube-controller-manager naming 2020-11-16 23:09:07 +02:00
Lubomir I. Ivanov 61e330d06d manual-ca-rotation: adjust note for "--client-ca-file"
- Instead of telling the users to remove the flag, tell them
that they can point to a copy of the new CA for --client-ca-file
--cluster-signing-cert-file that is not in a bundle with the old CA.
- Don't reference the kubeadm issue. If sig-auth has a tracking
issue for --client-ca-file / --cmanual-ca-rotation: adjust note for "--client-ca-file"

- Instead of telling the users to remove the --client-ca-file flag,
tell them that they can point to a copy of the new CA.
Mention the same for --cluster-signing-cert-file.
- Don't reference the kubeadm issue. If sig-auth has a tracking
issue for --client-ca-file / --cluster-signing-cert-file and bundles
we can add that at some point.
2020-11-16 23:09:07 +02:00
Lubomir I. Ivanov dd402eff76 kubeadm: remove general output from "kubeadm init"
Leave only the message:
  "Your Kubernetes control-plane has initialized..."
and the details bellow it.
2020-11-16 22:53:36 +02:00
Bin Chen 74243e9397 kubeadm: add instruction to check kubelet status
kubelet can fail to start due to various reason, e.g mismatching cgroup
drivers. Add this step to save user from having to go back and check when
found etcd cluster is not running successfully.
2020-11-16 19:50:31 +11:00
Kubernetes Prow Robot 8540e67a0b Merge pull request #25004 from celestehorgan/techdocs-7
Use k8s more widely
2020-11-15 13:31:03 -08:00
Laszlo Janosi ebf1a6148d Add the MixedProtocolLBService to the feature gate list 2020-11-14 15:37:24 +00:00
Laszlo Janosi d91e7f094a Document the use of mixed protocol values for LoadBalancer Type of Services 2020-11-14 15:32:42 +00:00
Mike Spreitzer bf23ba2aa9 Update API Priority and Fairness doc for graduatino to beta (#24975) 2020-11-14 01:55:04 -08:00
Christian Huffman 4b95114b63 Move CSIVolumeFSGroupPolicy to beta 2020-11-13 12:18:47 -05:00