Ankit Kumar:
How cordon and taint different from each other?
Sreekanthkurapati:
If you using taint once tolerance there in pod it will deploy in that node . But cordon never deploy the pod untill you clear it (uncordon)
1 Like
Ankit Kumar:
make sense… thanks
Shwetha Shenoy V:
taint on a node allow only some pods (those with tolerations to the taint) to be scheduled on that node.
Cordoning makes the node unschedulable for all pods.
1 Like
Ankit Kumar:
Right… got it