- Home
- All questions
- Question 913
CKA study material · question 913 of 1000
An operator adds --disable-eviction to a drain to get past a blocking PodDisruptionBudget. What is the consequence?
Show the answer
Answer: C. Pods are deleted directly, so the budget is not checked at all
--disable-eviction forces drain to use delete rather than the eviction API, which bypasses the disruption budget entirely — powerful and to be used with care.
Source: kubectl drain (Kubernetes) — Options