You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by cr...@apache.org on 2023/06/14 19:30:00 UTC

[superset] branch master updated: fix(helm): Add fullname prefix to init job (#24221)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 17e79ace79 fix(helm): Add fullname prefix to init job (#24221)
17e79ace79 is described below

commit 17e79ace794b58e32fe5b91ab5725de33d9fbc38
Author: Nick <Ni...@users.noreply.github.com>
AuthorDate: Wed Jun 14 21:29:52 2023 +0200

    fix(helm): Add fullname prefix to init job (#24221)
---
 helm/superset/Chart.yaml              | 2 +-
 helm/superset/README.md               | 2 +-
 helm/superset/templates/init-job.yaml | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml
index 81893c32eb..4f0f6d7305 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.10.1
+version: 0.10.2
 dependencies:
   - name: postgresql
     version: 12.1.6
diff --git a/helm/superset/README.md b/helm/superset/README.md
index eaa5c857a9..dc58b30f78 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.10.1](https://img.shields.io/badge/Version-0.10.1-informational?style=flat-square)
+![Version: 0.10.2](https://img.shields.io/badge/Version-0.10.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 0a8c45330d..da83f7f95d 100644
--- a/helm/superset/templates/init-job.yaml
+++ b/helm/superset/templates/init-job.yaml
@@ -21,7 +21,7 @@
 apiVersion: batch/v1
 kind: Job
 metadata:
-  name: {{ template "superset.name" . }}-init-db
+  name: {{ template "superset.fullname" . }}-init-db
   namespace: {{ .Release.Namespace }}
   {{- if .Values.init.jobAnnotations }}
   annotations: {{- toYaml .Values.init.jobAnnotations | nindent 4 }}
@@ -29,7 +29,7 @@ metadata:
 spec:
   template:
     metadata:
-      name: {{ template "superset.name" . }}-init-db
+      name: {{ template "superset.fullname" . }}-init-db
       {{- if .Values.init.podAnnotations }}
       annotations: {{- toYaml .Values.init.podAnnotations | nindent 8 }}
       {{- end }}