- Home
- All questions
- Question 616
CKA study material · question 616 of 1000
A namespace has a LimitRange whose default CPU limit is 500m. A Pod is submitted with a CPU request of 700m and no limit, and it never schedules. Why?
Show the answer
Answer: B. The defaulted limit ends up below the declared request, which is invalid
A LimitRange does not check the consistency of the defaults it applies, so a default limit lower than a declared request produces a Pod that can never be scheduled.
Source: Limit Ranges (Kubernetes) — LimitRange and admission checks for Pods