File tree 10 files changed +20
-10
lines changed
production/helm/loki/templates
10 files changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -1083,7 +1083,7 @@ enableServiceLinks: false
1083
1083
{ {- end } }
1084
1084
1085
1085
{ {- 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" ) } }
1087
1087
{ {- end -} }
1088
1088
1089
1089
{ {/*
@@ -1120,3 +1120,13 @@ Return the appropriate apiVersion for HorizontalPodAutoscaler.
1120
1120
{ {- print " autoscaling/v2beta1" -} }
1121
1121
{ {- end -} }
1122
1122
{ {- 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 } }
Original file line number Diff line number Diff line change 32
32
{{- if .Values.useExternalConfig }}
33
33
checksum/config : {{ .Values.externalConfigVersion }}
34
34
{{- else }}
35
- checksum/config : {{ include (print $.Template.BasePath " /config.yaml") . | sha256sum }}
35
+ checksum/config : {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" " /config.yaml") }}
36
36
{{- end}}
37
37
{{- with .Values.adminApi.annotations }}
38
38
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change 47
47
template :
48
48
metadata :
49
49
annotations :
50
- checksum/config : {{ include (print .Template.BasePath " /config.yaml") . | sha256sum }}
50
+ checksum/config : {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" " /config.yaml") }}
51
51
{{- with .Values.loki.podAnnotations }}
52
52
{{- toYaml . | nindent 8 }}
53
53
{{- end }}
Original file line number Diff line number Diff line change 32
32
{{- if .Values.useExternalConfig }}
33
33
checksum/config : {{ .Values.externalConfigVersion }}
34
34
{{- else }}
35
- checksum/config : {{ include (print $.Template.BasePath " /config.yaml") . | sha256sum }}
35
+ checksum/config : {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" " /config.yaml") }}
36
36
{{- end}}
37
37
{{- with .Values.enterpriseGateway.annotations }}
38
38
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change 30
30
template :
31
31
metadata :
32
32
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") }}
34
34
{{- with .Values.loki.podAnnotations }}
35
35
{{- toYaml . | nindent 8 }}
36
36
{{- end }}
Original file line number Diff line number Diff line change 33
33
template :
34
34
metadata :
35
35
annotations :
36
- checksum/config : {{ include (print .Template.BasePath " /config.yaml") . | sha256sum }}
36
+ checksum/config : {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" " /config.yaml") }}
37
37
{{- with .Values.loki.podAnnotations }}
38
38
{{- toYaml . | nindent 8 }}
39
39
{{- end }}
Original file line number Diff line number Diff line change 47
47
template :
48
48
metadata :
49
49
annotations :
50
- checksum/config : {{ include (print .Template.BasePath " /config.yaml") . | sha256sum }}
50
+ checksum/config : {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" " /config.yaml") }}
51
51
{{- with .Values.loki.podAnnotations }}
52
52
{{- toYaml . | nindent 8 }}
53
53
{{- end }}
Original file line number Diff line number Diff line change 41
41
template :
42
42
metadata :
43
43
annotations :
44
- checksum/config : {{ include (print .Template.BasePath " /config.yaml") . | sha256sum }}
44
+ checksum/config : {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" " /config.yaml") }}
45
45
{{- with .Values.loki.podAnnotations }}
46
46
{{- toYaml . | nindent 8 }}
47
47
{{- end }}
Original file line number Diff line number Diff line change 21
21
template :
22
22
metadata :
23
23
annotations :
24
- checksum/config : {{ include (print .Template.BasePath " /config.yaml") . | sha256sum }}
24
+ checksum/config : {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" " /config.yaml") }}
25
25
{{- with .Values.loki.podAnnotations }}
26
26
{{- toYaml . | nindent 8 }}
27
27
{{- end }}
Original file line number Diff line number Diff line change 47
47
template :
48
48
metadata :
49
49
annotations :
50
- checksum/config : {{ include (print .Template.BasePath " /config.yaml") . | sha256sum }}
50
+ checksum/config : {{ include "loki.configMapOrSecretContentHash" (dict "ctx" . "name" " /config.yaml") }}
51
51
{{- with .Values.loki.podAnnotations }}
52
52
{{- toYaml . | nindent 8 }}
53
53
{{- end }}
You can’t perform that action at this time.
0 commit comments