From d7382474a0816a501706bb5c4aa9aeca5c4033d7 Mon Sep 17 00:00:00 2001 From: Imer Date: Wed, 23 Sep 2020 15:24:44 +0800 Subject: [PATCH] Update taint-and-toleration.md delete ```shell kubectl taint nodes node1 key:NoSchedule- ``` docs en no that --- .../docs/concepts/scheduling-eviction/taint-and-toleration.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/content/zh/docs/concepts/scheduling-eviction/taint-and-toleration.md b/content/zh/docs/concepts/scheduling-eviction/taint-and-toleration.md index 6d5c10b7b4..caef0f6311 100644 --- a/content/zh/docs/concepts/scheduling-eviction/taint-and-toleration.md +++ b/content/zh/docs/concepts/scheduling-eviction/taint-and-toleration.md @@ -64,10 +64,6 @@ kubectl taint nodes node1 key:NoSchedule- 给节点 `node1` 增加一个污点,它的键名是 `key`,键值是 `value`,效果是 `NoSchedule`。 这表示只有拥有和这个污点相匹配的容忍度的 Pod 才能够被分配到 `node1` 这个节点。 -```shell -kubectl taint nodes node1 key:NoSchedule- -``` - 若要移除上述命令所添加的污点,你可以执行: ```shell