In Kubernetes, what is the difference between ResourceQuota vs LimitRange objects
LimitRange and ResourceQuota are objects used to control resource usage by a Kubernetes cluster administrator. ResourceQuota is for limiting the total resource consumption of a namespace, for example: apiVersion: v1 kind: ResourceQuota metadata: name: object-counts spec: hard: configmaps: “10” persistentvolumeclaims: “4” replicationcontrollers: “20” secrets: “10” services: “10” LimitRangeis for managing constraints at a pod and … Read more