Merge pull request #4287 from cyrgim/add-support-image-pull-secret

feat(helm): add support for imagePullSecrets
This commit is contained in:
Daniel Hougaard
2025-08-04 23:36:23 +04:00
committed by GitHub
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: []