Creating another Pod in the permits namespace returns Forbidden with a message that a ResourceQuota is exceeded for pods count. What does that indicate?
Select an answer to reveal the explanation.
Short Explanation
ResourceQuota is the apartment building’s unit cap — once the building is full, new leases are refused. Forbidden plus quota exceeded means the namespace budget, not a NetworkPolicy or disk-pressure riddle.
Full Explanation
ResourceQuota objects constrain aggregate resource usage or object counts within a namespace. When creating a Pod would exceed a hard pods count (or other quota), the API server denies the request with Forbidden. This is distinct from LimitRange validation, node conditions, and NetworkPolicy traffic filtering. Developers diagnose by inspecting kubectl describe resourcequota in the namespace.