From 925a05688336d368f15569d778d35814d9d2f281 Mon Sep 17 00:00:00 2001 From: Felix Kunde <felix-kunde@gmx.de> Date: Thu, 3 Jun 2021 10:14:22 +0200 Subject: [PATCH] using quote in UI deployment template --- charts/postgres-operator-ui/templates/deployment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/postgres-operator-ui/templates/deployment.yaml b/charts/postgres-operator-ui/templates/deployment.yaml index 9a1df3ab..b72b108e 100644 --- a/charts/postgres-operator-ui/templates/deployment.yaml +++ b/charts/postgres-operator-ui/templates/deployment.yaml @@ -43,13 +43,13 @@ spec: - name: "APP_URL" value: "http://localhost:8081" - name: "OPERATOR_API_URL" - value: {{ .Values.envs.operatorApiUrl }} + value: {{ .Values.envs.operatorApiUrl | quote }} - name: "OPERATOR_CLUSTER_NAME_LABEL" - value: {{ .Values.envs.operatorClusterNameLabel }} + value: {{ .Values.envs.operatorClusterNameLabel | quote }} - name: "RESOURCES_VISIBLE" - value: "{{ .Values.envs.resourcesVisible }}" + value: {{ .Values.envs.resourcesVisible | quote }} - name: "TARGET_NAMESPACE" - value: "{{ .Values.envs.targetNamespace }}" + value: {{ .Values.envs.targetNamespace | quote }} - name: "TEAMS" value: |- [ -- GitLab