Force pod restart on config changes (#13056)

This commit is contained in:
Yann Jouanique 2021-02-13 02:30:03 +02:00 committed by GitHub
parent 956f276e70
commit acca3a4431
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,11 +31,17 @@ spec:
release: {{ .Release.Name }}
template:
metadata:
{{ if .Values.supersetNode.forceReload }}
annotations:
# Optionally force the thing to reload
# Force reload on config changes
checksum/superset_config.py: {{ include "superset-config" . | sha256sum }}
checksum/superset_init.sh: {{ tpl .Values.init.initscript . | sha256sum }}
checksum/superset_bootstrap.sh: {{ include "superset-bootstrap" . | sha256sum }}
checksum/connections: {{ .Values.supersetNode.connections | toYaml | sha256sum }}
checksum/extraConfigs: {{ .Values.extraConfigs | toYaml | sha256sum }}
{{- if .Values.supersetNode.forceReload }}
# Optionally force the thing to reload unconditionally
force-reload: {{ randAlphaNum 5 | quote }}
{{ end }}
{{- end }}
labels:
app: {{ template "superset.name" . }}
release: {{ .Release.Name }}