From 16933c686dfdef5e87f450e3d9eeab5c425330ad Mon Sep 17 00:00:00 2001 From: taktakpeops <54535041+taktakpeops@users.noreply.github.com> Date: Thu, 16 Apr 2020 12:19:27 +0200 Subject: [PATCH] fix(tpl): quoting --- jitsi-meet/templates/deployment-prosody.yaml | 4 ++-- jitsi-meet/templates/jicofo-config.yaml | 4 ++-- jitsi-meet/templates/jvb-config.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jitsi-meet/templates/deployment-prosody.yaml b/jitsi-meet/templates/deployment-prosody.yaml index b48b8a4..b7225b1 100644 --- a/jitsi-meet/templates/deployment-prosody.yaml +++ b/jitsi-meet/templates/deployment-prosody.yaml @@ -32,7 +32,7 @@ spec: env: {{ if .Values.jicofo.userAuth.enabled }} - name: JICOFO_USER - value: {{ .Values.jicofo.userAuth.name | quote }} + value: {{ .Values.jicofo.userAuth.name }} - name: JICOFO_AUTH_PASSWORD valueFrom: secretKeyRef: @@ -62,7 +62,7 @@ spec: env: {{ if .Values.jicofo.userAuth.enabled }} - name: JICOFO_USER - value: {{ .Values.jicofo.userAuth.name }} + value: "{{ .Values.jicofo.userAuth.name }}" - name: JICOFO_AUTH_PASSWORD valueFrom: secretKeyRef: diff --git a/jitsi-meet/templates/jicofo-config.yaml b/jitsi-meet/templates/jicofo-config.yaml index 8f9fb12..bfcaa17 100644 --- a/jitsi-meet/templates/jicofo-config.yaml +++ b/jitsi-meet/templates/jicofo-config.yaml @@ -6,6 +6,6 @@ metadata: {{ include "jitsi-meet.labels" . | indent 4 }} data: {{ if .Values.jicofo.userAuth.enabled }} - JICOFO_AUTH_PASSWORD: {{ .Values.jicofo.userAuth.secret }} + JICOFO_AUTH_PASSWORD: {{ .Values.jicofo.userAuth.secret | quote }} {{ end }} - JICOFO_COMPONENT_SECRET: {{ .Values.jicofo.componentSecret }} \ No newline at end of file + JICOFO_COMPONENT_SECRET: {{ .Values.jicofo.componentSecret | quote }} \ No newline at end of file diff --git a/jitsi-meet/templates/jvb-config.yaml b/jitsi-meet/templates/jvb-config.yaml index 4d5fcc6..380372d 100644 --- a/jitsi-meet/templates/jvb-config.yaml +++ b/jitsi-meet/templates/jvb-config.yaml @@ -6,5 +6,5 @@ metadata: labels: {{ include "jitsi-meet.labels" . | indent 4 }} data: - JVB_AUTH_PASSWORD: {{ .Values.jvb.userAuth.secret }} + JVB_AUTH_PASSWORD: {{ .Values.jvb.userAuth.secret | quote }} {{- end -}}