- Home
- All questions
- Question 909
CKA study material · question 909 of 1000
Why do PodDisruptionBudgets take effect during a kubectl drain?
Show the answer
Answer: C. Because drain uses the eviction API where the server supports it
Evictions are policy-checked and consult disruption budgets; drain falls back to a plain delete where eviction is unsupported, and a plain delete does not check budgets.
Source: kubectl drain (Kubernetes) — Synopsis