Skip to content

Commit dad805c

Browse files
committed
fix: imagePullsecrets issue
1 parent 73aa896 commit dad805c

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed
-11 Bytes
Binary file not shown.

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ spec:
3131
operator: "Equal"
3232
value: "true"
3333
effect: "NoSchedule"
34-
{{- include "blob.pullSecrets" . | indent 6 }}
3534
containers:
3635
- name: csi-provisioner
3736
image: {{ .Values.image.csiProvisioner.repository }}:{{ .Values.image.csiProvisioner.tag }}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ spec:
3434
priorityClassName: system-node-critical
3535
tolerations:
3636
- operator: "Exists"
37-
{{- include "blob.pullSecrets" . | indent 6 }}
3837
containers:
3938
- name: liveness-probe
4039
imagePullPolicy: {{ .Values.image.livenessProbe.pullPolicy }}

hack/verify-helm-chart-files.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,9 @@ if [[ -n "${diff}" ]]; then
4747
fi
4848

4949
echo "chart tgz files verified."
50+
51+
echo "verify helm chart index ..."
52+
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
53+
helm repo add blob-csi-driver https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/charts
54+
helm search repo -l blob-csi-driver
55+
echo "helm chart index verified."

0 commit comments

Comments
 (0)