HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

kubectl taint — Update the taints on nodes. More information: <https://kubernetes.io/docs/reference/kubectl/generate

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandupdatekubectl taintclinodesmoretaints

Problem

How to use the kubectl taint command: Update the taints on nodes. More information: <https://kubernetes.io/docs/reference/kubectl/generated/kubectl_taint/>.

Solution

kubectl taint — Update the taints on nodes. More information: <https://kubernetes.io/docs/reference/kubectl/generated/kubectl_taint/>.

Apply taint to a node:
kubectl taint {{[no|nodes]}} {{node_name}} {{label_key}}={{label_value}}:{{effect}}


Remove taint from a node:
kubectl taint {{[no|nodes]}} {{node_name}} {{label_key}}:{{effect}}-


Remove all taints from a node:
kubectl taint {{[no|nodes]}} {{node_name}} {{label_key}}-

Code Snippets

Apply taint to a node

kubectl taint {{[no|nodes]}} {{node_name}} {{label_key}}={{label_value}}:{{effect}}

Remove taint from a node

kubectl taint {{[no|nodes]}} {{node_name}} {{label_key}}:{{effect}}-

Remove all taints from a node

kubectl taint {{[no|nodes]}} {{node_name}} {{label_key}}-

Context

tldr-pages: common/kubectl taint

Revisions (0)

No revisions yet.