- Home
- All questions
- Question 613
CKA study material · question 613 of 1000
A namespace needs both a ceiling on total CPU consumption and a cap on what any single Pod may request. Which two objects provide these? Choose two.
Show the answer
Answer: A. ResourceQuota for the namespace total
C. LimitRange for the per-object cap
A ResourceQuota bounds a namespace's aggregate consumption while a LimitRange bounds what a single Pod or claim may ask for; the two answer different questions and are often used together.
Source: Limit Ranges (Kubernetes) — Limit Ranges (overview)