Merge pull request #3879 from fluxcd/resourcequota

Add ResourceQuota for critical pods
This commit is contained in:
Stefan Prodan
2023-05-12 12:12:08 +03:00
committed by GitHub
2 changed files with 15 additions and 0 deletions

View File

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

View File

@ -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