Merge pull request #3879 from fluxcd/resourcequota

Add ResourceQuota for critical pods
pull/3882/head
Stefan Prodan 2 years ago committed by GitHub
commit cf5eb6a0bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,3 +5,4 @@ resources:
- reconciler.yaml - reconciler.yaml
- edit.yaml - edit.yaml
- view.yaml - view.yaml
- resourcequota.yaml

@ -0,0 +1,14 @@
apiVersion: v1
kind: ResourceQuota
metadata:
name: critical-pods
spec:
hard:
pods: "1000"
scopeSelector:
matchExpressions:
- operator: In
scopeName: PriorityClass
values:
- system-node-critical
- system-cluster-critical
Loading…
Cancel
Save