Merge pull request #2744 from gyliu513/kubectl-taint

Updated user guide for `kubectl taint` by adding `NoExecute`.
This commit is contained in:
Andrew Chen
2017-03-21 16:36:19 -07:00
committed by GitHub
+1 -1
View File
@@ -12,7 +12,7 @@ Update the taints on one or more nodes.
* A taint consists of a key, value, and effect. As an argument here, it is expressed as key=value:effect.
* The key must begin with a letter or number, and may contain letters, numbers, hyphens, dots, and underscores, up to 253 characters.
* The value must begin with a letter or number, and may contain letters, numbers, hyphens, dots, and underscores, up to 253 characters.
* The effect must be NoSchedule or PreferNoSchedule.
* The effect must be `NoSchedule`, `PreferNoSchedule` or `NoExecute`.
* Currently taint can only apply to node.
```