Skip to content

Commit 990f71c

Browse files
authored
feat(helm): Compute ConfigMap/Secret checksum only over .data content (#15177)
Currently, whenever merely the Helm chart version changes, all deployments/statefulsets and their pod templates are updated and restarted, because the sha256 checksum of the whole ConfigMap/Secret is computed, not just based on the .data content. And this is because with a new Helm chart version, that version is also encoded in the metadata of the ConfigMap/Secret resource, which however has no influence on the state of the volume mount for the running application/deployment/statefulset pods. This is an improvement to avoid this and only compute the sh256 checksum based on the .data content.
1 parent 751324c commit 990f71c

10 files changed

+20
-10
lines changed

‎production/helm/loki/templates/_helpers.tpl

+11-1
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ enableServiceLinks: false
10831083
{{- end }}
10841084

10851085
{{- define "loki.config.checksum" -}}
1086-
checksum/config: {{ include (print .Template.BasePath "/config.yaml") . | sha256sum }}
1086+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/config.yaml") }}
10871087
{{- end -}}
10881088

10891089
{{/*
@@ -1120,3 +1120,13 @@ Return the appropriate apiVersion for HorizontalPodAutoscaler.
11201120
{{- print "autoscaling/v2beta1" -}}
11211121
{{- end -}}
11221122
{{- end -}}
1123+
1124+
{{/*
1125+
compute a ConfigMap or Secret checksum only based on its .data content.
1126+
This function needs to be called with a context object containing the following keys:
1127+
- ctx: the current Helm context (what '.' is at the call site)
1128+
- name: the file name of the ConfigMap or Secret
1129+
*/}}
1130+
{{- define "loki.configMapOrSecretContentHash" -}}
1131+
{{ get (include (print .ctx.Template.BasePath .name) .ctx | fromYaml) "data" | toYaml | sha256sum }}
1132+
{{- end }}

‎production/helm/loki/templates/admin-api/deployment-admin-api.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
{{- if .Values.useExternalConfig }}
3333
checksum/config: {{ .Values.externalConfigVersion }}
3434
{{- else }}
35-
checksum/config: {{ include (print $.Template.BasePath "/config.yaml") . | sha256sum }}
35+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/config.yaml") }}
3636
{{- end}}
3737
{{- with .Values.adminApi.annotations }}
3838
{{- toYaml . | nindent 8 }}

‎production/helm/loki/templates/backend/statefulset-backend.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ spec:
4747
template:
4848
metadata:
4949
annotations:
50-
checksum/config: {{ include (print .Template.BasePath "/config.yaml") . | sha256sum }}
50+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/config.yaml") }}
5151
{{- with .Values.loki.podAnnotations }}
5252
{{- toYaml . | nindent 8 }}
5353
{{- end }}

‎production/helm/loki/templates/gateway/deployment-gateway-enterprise.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
{{- if .Values.useExternalConfig }}
3333
checksum/config: {{ .Values.externalConfigVersion }}
3434
{{- else }}
35-
checksum/config: {{ include (print $.Template.BasePath "/config.yaml") . | sha256sum }}
35+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/config.yaml") }}
3636
{{- end}}
3737
{{- with .Values.enterpriseGateway.annotations }}
3838
{{- toYaml . | nindent 8 }}

‎production/helm/loki/templates/gateway/deployment-gateway-nginx.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec:
3030
template:
3131
metadata:
3232
annotations:
33-
checksum/config: {{ include (print .Template.BasePath "/gateway/configmap-gateway.yaml") . | sha256sum }}
33+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/gateway/configmap-gateway.yaml") }}
3434
{{- with .Values.loki.podAnnotations }}
3535
{{- toYaml . | nindent 8 }}
3636
{{- end }}

‎production/helm/loki/templates/read/deployment-read.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
template:
3434
metadata:
3535
annotations:
36-
checksum/config: {{ include (print .Template.BasePath "/config.yaml") . | sha256sum }}
36+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/config.yaml") }}
3737
{{- with .Values.loki.podAnnotations }}
3838
{{- toYaml . | nindent 8 }}
3939
{{- end }}

‎production/helm/loki/templates/read/statefulset-read.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ spec:
4747
template:
4848
metadata:
4949
annotations:
50-
checksum/config: {{ include (print .Template.BasePath "/config.yaml") . | sha256sum }}
50+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/config.yaml") }}
5151
{{- with .Values.loki.podAnnotations }}
5252
{{- toYaml . | nindent 8 }}
5353
{{- end }}

‎production/helm/loki/templates/single-binary/statefulset.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ spec:
4141
template:
4242
metadata:
4343
annotations:
44-
checksum/config: {{ include (print .Template.BasePath "/config.yaml") . | sha256sum }}
44+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/config.yaml") }}
4545
{{- with .Values.loki.podAnnotations }}
4646
{{- toYaml . | nindent 8 }}
4747
{{- end }}

‎production/helm/loki/templates/table-manager/deployment-table-manager.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
template:
2222
metadata:
2323
annotations:
24-
checksum/config: {{ include (print .Template.BasePath "/config.yaml") . | sha256sum }}
24+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/config.yaml") }}
2525
{{- with .Values.loki.podAnnotations }}
2626
{{- toYaml . | nindent 8 }}
2727
{{- end }}

‎production/helm/loki/templates/write/statefulset-write.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ spec:
4747
template:
4848
metadata:
4949
annotations:
50-
checksum/config: {{ include (print .Template.BasePath "/config.yaml") . | sha256sum }}
50+
checksum/config: {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" "/config.yaml") }}
5151
{{- with .Values.loki.podAnnotations }}
5252
{{- toYaml . | nindent 8 }}
5353
{{- end }}

0 commit comments

Comments
 (0)