Skip to content

Commit 52bbdd3

Browse files
committed
fix typo in enabler of pdb for envoy, mas, pgbouncer
1 parent de1194a commit 52bbdd3

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

charts/synapse/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
22
name: synapse
3-
version: 0.48.0
3+
version: 0.49.0

charts/synapse/templates/envoy-pdb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if .Values.envoyProxy.podDisruptionBudget.ebabled }}
1+
{{- if .Values.envoyProxy.podDisruptionBudget.enabled }}
22
apiVersion: policy/v1
33
kind: PodDisruptionBudget
44
metadata:

charts/synapse/templates/matrix-authentication-pdb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.matrixAuthentication.enabled }}
2-
{{- if .Values.matrixAuthentication.podDisruptionBudget.ebabled }}
2+
{{- if .Values.matrixAuthentication.podDisruptionBudget.enabled }}
33
apiVersion: policy/v1
44
kind: PodDisruptionBudget
55
metadata:

charts/synapse/templates/pgbouncer-deployment-pdb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if .Values.synapse.pgbouncer.podDisruptionBudget.ebabled }}
1+
{{- if .Values.synapse.pgbouncer.podDisruptionBudget.enabled }}
22
apiVersion: policy/v1
33
kind: PodDisruptionBudget
44
metadata:

charts/synapse/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ synapse:
159159
# set thish gt 0 if you want to enable serveice sessionAffinity by ClientIP
160160
sessionAffinityTimeoutSeconds: 0
161161
podDisruptionBudget:
162-
ebabled: true
162+
enabled: true
163163
# Define either 'minAvailable' or 'maxUnavailable', never both.
164164
minAvailable: 1
165165
# -- Maximum unavailable pods set in PodDisruptionBudget. If set, 'minAvailable' is ignored.
@@ -498,7 +498,7 @@ envoyProxy:
498498
port: 80
499499
replicaCount: 2
500500
podDisruptionBudget:
501-
ebabled: true
501+
enabled: true
502502
# Define either 'minAvailable' or 'maxUnavailable', never both.
503503
minAvailable: 1
504504
# -- Maximum unavailable pods set in PodDisruptionBudget. If set, 'minAvailable' is ignored.
@@ -541,7 +541,7 @@ matrixAuthentication:
541541
port: 80
542542
replicaCount: 2
543543
podDisruptionBudget:
544-
ebabled: true
544+
enabled: true
545545
#minAvailable: 1
546546
# Define either 'minAvailable' or 'maxUnavailable', never both.
547547
minAvailable: 1

0 commit comments

Comments
 (0)