[stable/postgresql] Fix quote bug (#10224)

Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com>
This commit is contained in:
Javier J. Salmerón-García
2018-12-26 01:09:54 -08:00
committed by Kubernetes Prow Robot
parent 298bb7c45d
commit 162a1998a1
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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:
+2 -2
View File
@@ -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 }}