We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6676d07 commit f7f469cCopy full SHA for f7f469c
charts/synapse/Chart.yaml
@@ -1,3 +1,3 @@
1
---
2
name: synapse
3
-version: 0.4.0
+version: 0.4.1
charts/synapse/templates/synapse-resource-quota.yaml
@@ -0,0 +1,18 @@
+{{- if .Values.resourceQuota.enabled }}
+apiVersion: v1
+kind: ResourceQuota
4
+metadata:
5
+ labels:
6
+ addonmanager.kubernetes.io/mode: Reconcile
7
+ name: synapse-critical-pods
8
+spec:
9
+ hard:
10
+ pods: 1G
11
+ scopeSelector:
12
+ matchExpressions:
13
+ - operator: In
14
+ scopeName: PriorityClass
15
+ values:
16
+ - system-node-critical
17
+ - system-cluster-critical
18
+{{- end }}
charts/synapse/values.yaml
@@ -490,3 +490,6 @@ wellKnown:
490
requests:
491
cpu: 20m
492
memory: 64Mi
493
+
494
+resourceQuota:
495
+ enabled: true
0 commit comments