We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab14c00 commit 4d05c35Copy full SHA for 4d05c35
charts/velero/templates/serviceaccount-server.yaml
@@ -16,4 +16,10 @@ metadata:
16
{{- with .Values.serviceAccount.server.labels }}
17
{{- toYaml . | nindent 4 }}
18
{{- end }}
19
+{{- if .Values.serviceAccount.server.imagePullSecrets }}
20
+ imagePullSecrets:
21
+ {{- range .Values.serviceAccount.server.imagePullSecrets }}
22
+ - name: {{ . }}
23
+ {{- end }}
24
+{{- end }}
25
charts/velero/values.yaml
@@ -485,6 +485,8 @@ serviceAccount:
485
name:
486
annotations:
487
labels:
488
+ imagePullSecrets: []
489
+ # - registrySecretName
490
491
# Info about the secret to be used by the Velero deployment, which
492
# should contain credentials for the cloud provider IAM account you've
0 commit comments