Skip to content

Instantly share code, notes, and snippets.

@m3pratik
Created February 6, 2023 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m3pratik/1fde91c91885737cfcbffd28193a8895 to your computer and use it in GitHub Desktop.
Save m3pratik/1fde91c91885737cfcbffd28193a8895 to your computer and use it in GitHub Desktop.
namespace-resource-quota.yaml
apiVersion: v1
kind: ResourceQuota
metadata:
name: namespace-resource-quota
namespace: development
spec:
hard:
requests.cpu: "1"
requests.memory: 1Gi
limits.cpu: "2"
limits.memory: 2Gi
pods: "5"
configmaps: "3"
persistentvolumeclaims: "5"
secrets: "6"
services: "5"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment