logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Kubectl Taint - Control Node Taints | Online Free DevTools by Hexmos

Control Kubernetes node taints with Kubectl Taint. Manage node scheduling, and evict pods based on taints and tolerations. Free online tool, no registration required.

kubectl-taint

Update the taints on nodes. More information: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#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}}-

See Also