You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by mi...@apache.org on 2023/12/08 14:14:42 UTC

(superset) 03/11: fix(init-job): Fix envFrom for init job in helm chart (#26157)

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

michaelsmolina pushed a commit to branch 3.1
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 2104a9a8536d889cb7c14738899fd046b3f32efb
Author: Suma Goud B <55...@users.noreply.github.com>
AuthorDate: Wed Dec 6 16:40:43 2023 +0100

    fix(init-job): Fix envFrom for init job in helm chart (#26157)
    
    (cherry picked from commit 4d4b19e8bacc59a7257c46589d7151b3a4e6ee49)
---
 helm/superset/Chart.yaml              | 2 +-
 helm/superset/README.md               | 2 +-
 helm/superset/templates/init-job.yaml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml
index 459392f8a1..cbca942569 100644
--- a/helm/superset/Chart.yaml
+++ b/helm/superset/Chart.yaml
@@ -29,7 +29,7 @@ maintainers:
   - name: craig-rueda
     email: craig@craigrueda.com
     url: https://github.com/craig-rueda
-version: 0.11.1
+version: 0.11.2
 dependencies:
   - name: postgresql
     version: 12.1.6
diff --git a/helm/superset/README.md b/helm/superset/README.md
index 886623e3f8..1eaf4928c1 100644
--- a/helm/superset/README.md
+++ b/helm/superset/README.md
@@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs
 
 # superset
 
-![Version: 0.11.1](https://img.shields.io/badge/Version-0.11.1-informational?style=flat-square)
+![Version: 0.11.2](https://img.shields.io/badge/Version-0.11.2-informational?style=flat-square)
 
 Apache Superset is a modern, enterprise-ready business intelligence web application
 
diff --git a/helm/superset/templates/init-job.yaml b/helm/superset/templates/init-job.yaml
index 5b39d20e10..43839c0d95 100644
--- a/helm/superset/templates/init-job.yaml
+++ b/helm/superset/templates/init-job.yaml
@@ -63,7 +63,7 @@ spec:
               name: {{ tpl .Values.envFromSecret . }}
           {{- range .Values.envFromSecrets }}
           - secretRef:
-              name: {{ tpl . $ }}
+              name: {{ tpl . $ | quote }}
           {{- end }}
         imagePullPolicy: {{ .Values.image.pullPolicy }}
         {{- if .Values.init.containerSecurityContext }}