matrix-media-repo: Fix non-standard postgres ports
This commit is contained in:
parent
149da56298
commit
8b3ec66704
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ description: Matrix media repository with multi-domain in mind.
|
|||
appVersion: 1.2.13
|
||||
|
||||
type: application
|
||||
version: 2.0.1
|
||||
version: 2.0.2
|
||||
maintainers:
|
||||
- name: Alexander Olofsson
|
||||
email: ace@haxalot.com
|
||||
|
|
|
@ -11,7 +11,7 @@ stringData:
|
|||
{{- if or .Values.postgresql.sslMode .Values.externalPostgresql.sslMode }}
|
||||
{{- $sslmode = printf "?sslmode=%s" (.Values.postgresql.sslMode | default .Values.externalPostgresql.sslMode) }}
|
||||
{{- end }}
|
||||
postgres: "postgres://{{ include "matrix-media-repo.postgresql.username" . }}:{{ required "A password must be provided for Postgres" (include "matrix-media-repo.postgresql.password" .) }}@{{ include "matrix-media-repo.postgresql.host" . }}/{{ include "matrix-media-repo.postgresql.database" . }}{{ $sslmode }}"
|
||||
postgres: "postgres://{{ include "matrix-media-repo.postgresql.username" . }}:{{ required "A password must be provided for Postgres" (include "matrix-media-repo.postgresql.password" .) }}@{{ include "matrix-media-repo.postgresql.host" . }}:{{ include "matrix-media-repo.postgresql.port" . }}/{{ include "matrix-media-repo.postgresql.database" . }}{{ $sslmode }}"
|
||||
|
||||
00-redis.yaml: |
|
||||
redis:
|
||||
|
|
Loading…
Reference in a new issue