About the Kubernetes-Slack Discussions category

Keep up with Kubernetes discussions from Slack with added community support.

Hi ,
This Q is related to taints and tolerations :

To create a taint on a node we use a cmd like
k taint node <node_name> key=value: taint-effect (Till this point I can understand)

But when we apply tolerance on some pod definition file we mention “effect” along with key value.

Why we need to mention effect again on pod ? we already mentioned effect on taint. what if effect value we have given on taint is different than the value in toleration ?

I think I got ans : This is just to make all parameter same as taints and neutralize the taint and will become tolerant :slight_smile: