feat(helm): add support for imagePullSecrets

This commit is contained in:
cyrgim
2025-07-31 07:01:51 +02:00
parent 573b990aa3
commit 4704774c63
2 changed files with 5 additions and 0 deletions

View File

@@ -86,6 +86,10 @@ spec:
securityContext:
runAsNonRoot: true
serviceAccountName: {{ include "secrets-operator.fullname" . }}-controller-manager
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
terminationGracePeriodSeconds: 10
nodeSelector: {{ toYaml .Values.controllerManager.nodeSelector | nindent 8 }}
tolerations: {{ toYaml .Values.controllerManager.tolerations | nindent 8 }}

View File

@@ -56,3 +56,4 @@ kubernetesClusterDomain: cluster.local
scopedNamespace: ""
scopedRBAC: false
installCRDs: true
imagePullSecrets: []