File tree Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 14
14
{{ include "blob.labels" . | indent 6 }}
15
15
app : csi-blob-controller
16
16
spec :
17
+ {{- if .Values.imagePullSecrets }}
18
+ imagePullSecrets :
19
+ {{ toYaml .Values.imagePullSecrets | indent 8 }}
20
+ {{- end }}
17
21
hostNetwork : true
18
22
serviceAccountName : csi-blob-controller-sa
19
23
nodeSelector :
Original file line number Diff line number Diff line change 13
13
{{ include "blob.labels" . | indent 6 }}
14
14
app : csi-blob-node
15
15
spec :
16
+ {{- if .Values.imagePullSecrets }}
17
+ imagePullSecrets :
18
+ {{ toYaml .Values.imagePullSecrets | indent 8 }}
19
+ {{- end }}
16
20
hostNetwork : true
17
21
dnsPolicy : ClusterFirstWithHostNet
18
22
serviceAccountName : csi-blob-node-sa
Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ image:
20
20
tag : v1.1.0
21
21
pullPolicy : IfNotPresent
22
22
23
+ # # Reference to one or more secrets to be used when pulling images
24
+ # # ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
25
+ imagePullSecrets : []
26
+ # - name: myRegistryKeySecretName
27
+
23
28
serviceAccount :
24
29
create : true
25
30
You can’t perform that action at this time.
0 commit comments