From 39d7770b8cbd5e3c86bea56edf86bef42f1ec8aa Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Wed, 30 Mar 2022 01:51:35 +0300 Subject: [PATCH] create-cluster-kubeadm: fix typo in "master" label A prior change to modify the command for control plane untaint introduced a typo "control-master-". Fix it, as it should be "master-". --- .../tools/kubeadm/create-cluster-kubeadm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/setup/production-environment/tools/kubeadm/create-cluster-kubeadm.md b/content/en/docs/setup/production-environment/tools/kubeadm/create-cluster-kubeadm.md index eb2d370bc6..c4d2d6968a 100644 --- a/content/en/docs/setup/production-environment/tools/kubeadm/create-cluster-kubeadm.md +++ b/content/en/docs/setup/production-environment/tools/kubeadm/create-cluster-kubeadm.md @@ -290,7 +290,7 @@ reasons. If you want to be able to schedule Pods on the control plane nodes, for example for a single machine Kubernetes cluster, run: ```bash -kubectl taint nodes --all node-role.kubernetes.io/control-plane- node-role.kubernetes.io/control-master- +kubectl taint nodes --all node-role.kubernetes.io/control-plane- node-role.kubernetes.io/master- ``` The output will look something like: