fix(helm): Add fullname prefix to init job (#24221)

This commit is contained in:
Nick 2023-06-14 21:29:52 +02:00 committed by GitHub
parent fcf7cba8fe
commit 17e79ace79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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 }}