ResourceQuota
ResourceQuota is a namespace-scoped resource in Kubernetes that enforces limits on the amount of resources a single namespace can consume within a cluster. It serves as a governance mechanism to prevent a single tenant or application from exhausting cluster resources and to provide predictable resource availability for other workloads.
A ResourceQuota object defines hard limits in its spec.hard field and is accompanied by status information
Quotas can limit both counts of resources (for example, the number of pods or services) and aggregated
Typical use cases include multi-tenant clusters, ensuring fair resource distribution, protecting critical services from resource starvation,