- Home
- All questions
- Question 668
CKA study material · question 668 of 1000
A node has three taints and a Pod tolerates two of them; the untolerated one has effect NoSchedule. What is the outcome for a new Pod?
Show the answer
Answer: C. It does not schedule on that node
Taints are filtered, not scored: tolerated ones are ignored and whatever remains still applies, so a single untolerated NoSchedule taint is enough to block placement.
Source: Taints and Tolerations (Kubernetes) — Concepts