From edd5fb3a1e02b796ba7d0879dbcc3c7eef2d07fd Mon Sep 17 00:00:00 2001 From: Sem Schilder Date: Sat, 15 Feb 2025 15:35:17 +0100 Subject: [PATCH] Make sure to quote replica db port value --- 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 }}