feat: added option to set pod annotations on init-db pod to Helm chart. (#17581)

Signed-off-by: David Talbot <davidtalbot100@gmail.com>
This commit is contained in:
David Talbot 2021-12-01 07:42:38 +13:00 committed by GitHub
parent 4e76637252
commit 95177d72b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

View File

@ -22,7 +22,7 @@ maintainers:
- name: craig-rueda
email: craig@craigrueda.com
url: https://github.com/craig-rueda
version: 0.3.12
version: 0.4.0
dependencies:
- name: postgresql
version: 10.2.0

View File

@ -26,6 +26,10 @@ spec:
template:
metadata:
name: {{ template "superset.name" . }}-init-db
{{- if .Values.init.podAnnotations }}
annotations:
{{ toYaml .Values.init.podAnnotations | nindent 8 }}
{{- end }}
spec:
securityContext:
runAsUser: {{ .Values.runAsUser }}

View File

@ -335,6 +335,8 @@ init:
echo "Importing database connections.... "
superset import_datasources -p {{ .Values.extraConfigMountPath }}/import_datasources.yaml
fi
## Annotations to be added to init job pods
podAnnotations: {}
##
## Configuration values for the postgresql dependency.
## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md