Skip to content

Commit

Permalink
fix: move imagePullSecrets property to correct position
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Csordas authored and Kurt108 committed Jul 15, 2024
1 parent 703da74 commit 0dcaf92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions charts/gotenberg/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ metadata:
{{ toYaml .Values.annotations | indent 8 }}
{{- end }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
Expand All @@ -27,6 +23,10 @@ spec:
annotations:
checksum/config: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
securityContext:
runAsUser: 1001
runAsGroup: 1001
Expand Down

0 comments on commit 0dcaf92

Please sign in to comment.