matrix-synapse: Fix remaining old pg values
This commit is contained in:
parent
c7fc15e5b0
commit
3620f71b05
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{{- $needsVolumePermissions := and .Values.volumePermissions.enabled (or .Values.persistence.enabled .Values.persistence.existingClaim) }}
|
||||
{{- if (and .Values.postgresql.enabled (and (not .Values.postgresql.postgresqlPassword) (not .Values.postgresql.existingSecret))) -}}
|
||||
{{- if (and .Values.postgresql.enabled (and (not .Values.postgresql.auth.password) (not .Values.postgresql.existingSecret))) -}}
|
||||
{{- fail "You must specify a static postgres password or existing secret if using the included postgres chart" -}}
|
||||
{{- end -}}
|
||||
{{- if (and .Values.redis.enabled (and .Values.redis.usePassword (and (not .Values.redis.auth.password) (not .Values.redis.auth.existingSecret)))) -}}
|
||||
|
|
|
@ -677,7 +677,7 @@ wellknown:
|
|||
postgresql:
|
||||
enabled: true
|
||||
|
||||
auth:
|
||||
auth: {}
|
||||
# XXX Change me!
|
||||
# password: synapse
|
||||
|
||||
|
|
Loading…
Reference in a new issue