A building-permits namespace must not over-request PVC storage. Which Kubernetes control caps total PVC storage requests in that namespace?
Select an answer to reveal the explanation.
Short Explanation
ResourceQuota is the namespace budget sheet—it can say “this team only gets this much claimed disk,” so PVC requests stop when the budget’s gone.
Full Explanation
ResourceQuota objects can constrain the count of PersistentVolumeClaims and the sum of storage requests (requests.storage) within a namespace. PodDisruptionBudgets manage voluntary disruptions, LimitRanges set per-pod defaults/min/max (not the usual aggregate PVC storage cap described here), and NetworkPolicies do not enforce storage quotas.