From 5f7b88ddc7617860ad4afb999f80e1a5c2146bfd Mon Sep 17 00:00:00 2001 From: BIAOXYZ Date: Sun, 7 Jul 2019 13:22:33 +0800 Subject: [PATCH] Fix the nodename typo of the untaint command (#15309) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修正删除taint命令中关于节点名称的一处笔误。 --- content/zh/docs/concepts/configuration/taint-and-toleration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/zh/docs/concepts/configuration/taint-and-toleration.md b/content/zh/docs/concepts/configuration/taint-and-toleration.md index 388bb057c0..b997b55df6 100755 --- a/content/zh/docs/concepts/configuration/taint-and-toleration.md +++ b/content/zh/docs/concepts/configuration/taint-and-toleration.md @@ -78,7 +78,7 @@ To remove the taint added by the command above, you can run: --> 想删除上述命令添加的 taint ,您可以运行: ```shell -kubectl taint nodes kube11 key:NoSchedule- +kubectl taint nodes node1 key:NoSchedule- ``` ```yaml