A developer creates a Pod in a namespace that has a LimitRange defining default CPU and memory limits. The Pod template omitted resources entirely. After admission, what typically appears on the container?
Select an answer to reveal the explanation.
Short Explanation
LimitRange is the form that fills in blank resource fields with house defaults. Leave requests and limits empty and those defaults get stamped on. It is not the same thing as the namespace’s total ResourceQuota budget.
Full Explanation
LimitRange can supply default and defaultRequest values for containers that omit resource fields, and can also enforce min/max constraints. During admission, those defaults are merged into the Pod spec so the stored object includes concrete resources. ResourceQuota tracks namespace totals separately and does not replace LimitRange’s defaulting role.