From 17e79ace794b58e32fe5b91ab5725de33d9fbc38 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 14 Jun 2023 21:29:52 +0200 Subject: [PATCH] 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 81893c32e..4f0f6d730 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 eaa5c857a..dc58b30f7 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 0a8c45330..da83f7f95 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 }}