- Home
- All questions
- Question 670
CKA study material · question 670 of 1000
A Pod manifest sets spec.nodeName directly to a node carrying a NoExecute taint the Pod does not tolerate. What happens?
Show the answer
Answer: B. The Pod is placed on the node and the kubelet then ejects it
Setting nodeName skips the scheduler, so NoSchedule taints are bypassed — but NoExecute is enforced by the kubelet, which ejects a Pod that does not tolerate it.
Source: Taints and Tolerations (Kubernetes) — Concepts