From 162a1998a1399d293a5989c6a58703e2837dff24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20J=2E=20Salmer=C3=B3n-Garc=C3=ADa?= Date: Wed, 26 Dec 2018 10:09:54 +0100 Subject: [PATCH] [stable/postgresql] Fix quote bug (#10224) Signed-off-by: Javier J. Salmeron Garcia --- stable/postgresql/Chart.yaml | 2 +- stable/postgresql/templates/statefulset.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/postgresql/Chart.yaml b/stable/postgresql/Chart.yaml index 3f4438b4eb..48b3825360 100644 --- a/stable/postgresql/Chart.yaml +++ b/stable/postgresql/Chart.yaml @@ -1,5 +1,5 @@ name: postgresql -version: 3.7.0 +version: 3.7.1 appVersion: 10.6.0 description: Chart for PostgreSQL, an object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance. keywords: diff --git a/stable/postgresql/templates/statefulset.yaml b/stable/postgresql/templates/statefulset.yaml index 6502808dc9..328190a5d5 100644 --- a/stable/postgresql/templates/statefulset.yaml +++ b/stable/postgresql/templates/statefulset.yaml @@ -105,9 +105,9 @@ spec: {{- end }} {{- if not (eq .Values.replication.synchronousCommit "off")}} - name: POSTGRESQL_SYNCHRONOUS_COMMIT_MODE - value: {{ .Values.replication.synchronousCommit }} + value: {{ .Values.replication.synchronousCommit | quote }} - name: POSTGRESQL_NUM_SYNCHRONOUS_REPLICAS - value: {{ .Values.replication.numSynchronousReplicas }} + value: {{ .Values.replication.numSynchronousReplicas | quote }} {{- end }} - name: POSTGRESQL_CLUSTER_APP_NAME value: {{ .Values.replication.applicationName }}