Hi, I have a query in relation to taints and node selectors. If we use `nodeName . . .

AVINASH:
Hi, I have a query in relation to taints and node selectors. If we use nodeName: master selector to schedule a pod to master, does it take precedence over the taints applied to the Node ?

Sam:
I dont think it will take precedence because Deny takes precedence as a general rule. so taint will not allow it finally.

unnivkn:
Hi… nodeName: master is a manual scheduling. Its not depend on the scheduler. So the pod will run on Master, it won’t care about the taint… Please test it & validate.

Sam:
makes sense

AVINASH:
Thanks Unni and Sam, Yes I tested this during the lightning labs to schedule to master.