From 2d2d10c6b33ccce3db891abe0f2563a421b7224e Mon Sep 17 00:00:00 2001 From: Sem Schilder Date: Mon, 24 Feb 2025 12:25:51 +0100 Subject: [PATCH] Make sure to quote replica db port value (#165) --- templates/configmap-env.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/configmap-env.yaml b/templates/configmap-env.yaml index 5327d04..64f6681 100644 --- a/templates/configmap-env.yaml +++ b/templates/configmap-env.yaml @@ -19,7 +19,7 @@ data: REPLICA_DB_HOST: {{ .Values.postgresql.readReplica.hostname }} {{- end }} {{- if .Values.postgresql.readReplica.port }} - REPLICA_DB_PORT: {{ .Values.postgresql.readReplica.port }} + REPLICA_DB_PORT: {{ .Values.postgresql.readReplica.port | quote }} {{- end }} {{- if .Values.postgresql.readReplica.auth.database }} REPLICA_DB_NAME: {{ .Values.postgresql.readReplica.auth.database }}