@@ -4,15 +4,15 @@ metadata:
44 annotations :
55{{ include "reloader-helm3.annotations" . | indent 4 }}
66{{- if .Values.reloader.deployment.annotations }}
7- {{ toYaml .Values.reloader.deployment.annotations | indent 4 }}
7+ {{ tpl ( toYaml .Values.reloader.deployment.annotations) . | indent 4 }}
88{{- end }}
99 labels :
1010{{ include "reloader-labels.chart" . | indent 4 }}
1111{{- if .Values.reloader.deployment.labels }}
12- {{ toYaml .Values.reloader.deployment.labels | indent 4 }}
12+ {{ tpl ( toYaml .Values.reloader.deployment.labels) . | indent 4 }}
1313{{- end }}
1414{{- if .Values.reloader.matchLabels }}
15- {{ toYaml .Values.reloader.matchLabels | indent 4 }}
15+ {{ tpl ( toYaml .Values.reloader.matchLabels) . | indent 4 }}
1616{{- end }}
1717 name : {{ template "reloader-fullname" . }}
1818 namespace : {{ .Values.namespace | default .Release.Namespace }}
@@ -28,21 +28,21 @@ spec:
2828 app : {{ template "reloader-fullname" . }}
2929 release : {{ .Release.Name | quote }}
3030{{- if .Values.reloader.matchLabels }}
31- {{ toYaml .Values.reloader.matchLabels | indent 6 }}
31+ {{ tpl ( toYaml .Values.reloader.matchLabels) . | indent 6 }}
3232{{- end }}
3333 template :
3434 metadata :
3535{{- if .Values.reloader.deployment.pod.annotations }}
3636 annotations :
37- {{ toYaml .Values.reloader.deployment.pod.annotations | indent 8 }}
37+ {{ tpl ( toYaml .Values.reloader.deployment.pod.annotations) . | indent 8 }}
3838{{- end }}
3939 labels :
4040{{ include "reloader-labels.chart" . | indent 8 }}
4141{{- if .Values.reloader.deployment.labels }}
42- {{ toYaml .Values.reloader.deployment.labels | indent 8 }}
42+ {{ tpl ( toYaml .Values.reloader.deployment.labels) . | indent 8 }}
4343{{- end }}
4444{{- if .Values.reloader.matchLabels }}
45- {{ toYaml .Values.reloader.matchLabels | indent 8 }}
45+ {{ tpl ( toYaml .Values.reloader.matchLabels) . | indent 8 }}
4646{{- end }}
4747 spec :
4848 {{- with .Values.global.imagePullSecrets }}
0 commit comments