This is an automated email from the ASF dual-hosted git repository.

gyfora pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git


The following commit(s) were added to refs/heads/main by this push:
     new 849c5289 [FLINK-29086] Fix the Helm chart's pod env reference
849c5289 is described below

commit 849c52897f3bd2a2212591e3fa6103a9bf8a7afc
Author: Xin Hao <[email protected]>
AuthorDate: Fri Aug 26 16:00:55 2022 +0800

    [FLINK-29086] Fix the Helm chart's pod env reference
---
 helm/flink-kubernetes-operator/templates/flink-operator.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/helm/flink-kubernetes-operator/templates/flink-operator.yaml 
b/helm/flink-kubernetes-operator/templates/flink-operator.yaml
index 2f4fc51c..301077b9 100644
--- a/helm/flink-kubernetes-operator/templates/flink-operator.yaml
+++ b/helm/flink-kubernetes-operator/templates/flink-operator.yaml
@@ -84,8 +84,8 @@ spec:
             - name: JVM_ARGS
               value: {{ .Values.jvmArgs.operator }}
             {{- range $k, $v := .Values.operatorPod.env }}
-            - name: {{ $v.name }}
-              value: {{ $v.value }}
+            - name: {{ $v.name | quote }}
+              value: {{ $v.value | quote }}
             {{- end }}
           securityContext:
             {{- toYaml .Values.operatorSecurityContext | nindent 12 }}

Reply via email to