Skip to content

Commit 4e961e9

Browse files
author
daan
committed
add imagepullsecrets
Signed-off-by: daan <[email protected]>
1 parent b73e6b4 commit 4e961e9

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

charts/latest/blob-csi-driver/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: latest
33
description: Azure Blob Storage CSI driver
44
name: blob-csi-driver
5-
version: v1.0.0
5+
version: v1.0.1

charts/latest/blob-csi-driver/templates/csi-blob-controller.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ spec:
1414
{{ include "blob.labels" . | indent 6 }}
1515
app: csi-blob-controller
1616
spec:
17+
{{- if .Values.imagePullSecrets }}
18+
imagePullSecrets:
19+
{{ toYaml .Values.imagePullSecrets | indent 8 }}
20+
{{- end }}
1721
hostNetwork: true
1822
serviceAccountName: csi-blob-controller-sa
1923
nodeSelector:

charts/latest/blob-csi-driver/templates/csi-blob-node.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ spec:
1313
{{ include "blob.labels" . | indent 6 }}
1414
app: csi-blob-node
1515
spec:
16+
{{- if .Values.imagePullSecrets }}
17+
imagePullSecrets:
18+
{{ toYaml .Values.imagePullSecrets | indent 8 }}
19+
{{- end }}
1620
hostNetwork: true
1721
dnsPolicy: ClusterFirstWithHostNet
1822
serviceAccountName: csi-blob-node-sa

charts/latest/blob-csi-driver/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ image:
2020
tag: v1.1.0
2121
pullPolicy: IfNotPresent
2222

23+
imagePullSecrets: []
24+
# - name: myRegistryKeySecretName
25+
2326
serviceAccount:
2427
create: true
2528

0 commit comments

Comments
 (0)