Skip to content

Commit 0dcaf92

Browse files
Adam CsordasKurt108
Adam Csordas
authored andcommittedJul 15, 2024·
fix: move imagePullSecrets property to correct position
1 parent 703da74 commit 0dcaf92

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎charts/gotenberg/templates/deployment.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ metadata:
1212
{{ toYaml .Values.annotations | indent 8 }}
1313
{{- end }}
1414
spec:
15-
{{- with .Values.imagePullSecrets }}
16-
imagePullSecrets:
17-
{{- toYaml . | nindent 8 }}
18-
{{- end }}
1915
replicas: {{ .Values.replicaCount }}
2016
selector:
2117
matchLabels:
@@ -27,6 +23,10 @@ spec:
2723
annotations:
2824
checksum/config: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
2925
spec:
26+
{{- with .Values.imagePullSecrets }}
27+
imagePullSecrets:
28+
{{- toYaml . | nindent 8 }}
29+
{{- end }}
3030
securityContext:
3131
runAsUser: 1001
3232
runAsGroup: 1001

0 commit comments

Comments
 (0)