File tree Expand file tree Collapse file tree 7 files changed +2
-86
lines changed Expand file tree Collapse file tree 7 files changed +2
-86
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,6 @@ The following table lists the configurable parameters of the latest Azure Blob S
51
51
| ` image.csiProvisioner.repository ` | csi-provisioner docker image | mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner |
52
52
| ` image.csiProvisioner.tag ` | csi-provisioner docker image tag | v1.4.0 |
53
53
| ` image.csiProvisioner.pullPolicy ` | csi-provisioner image pull policy | IfNotPresent |
54
- | ` image.csiAttacher.repository ` | csi-attacher docker image | mcr.microsoft.com/oss/kubernetes-csi/csi-attacher |
55
- | ` image.csiAttacher.tag ` | csi-attacher docker image tag | v2.2.0 |
56
- | ` image.csiAttacher.pullPolicy ` | csi-attacher image pull policy | IfNotPresent | |
57
54
| ` image.livenessProbe.repository ` | liveness-probe docker image | mcr.microsoft.com/oss/kubernetes-csi/livenessprobe |
58
55
| ` image.livenessProbe.tag ` | liveness-probe docker image tag | v1.1.0 |
59
56
| ` image.livenessProbe.pullPolicy ` | liveness-probe image pull policy | IfNotPresent |
Original file line number Diff line number Diff line change 48
48
requests :
49
49
cpu : 10m
50
50
memory : 20Mi
51
- - name : csi-attacher
52
- image : " {{ .Values.image.csiAttacher.repository }}:{{ .Values.image.csiAttacher.tag }}"
53
- args :
54
- - " -v=5"
55
- - " -csi-address=$(ADDRESS)"
56
- - " -timeout=120s"
57
- - " -leader-election"
58
- env :
59
- - name : ADDRESS
60
- value : /csi/csi.sock
61
- imagePullPolicy : {{ .Values.image.csiAttacher.pullPolicy }}
62
- volumeMounts :
63
- - mountPath : /csi
64
- name : socket-dir
65
- resources :
66
- limits :
67
- cpu : 100m
68
- memory : 100Mi
69
- requests :
70
- cpu : 10m
71
- memory : 20Mi
72
51
- name : liveness-probe
73
52
image : " {{ .Values.image.livenessProbe.repository }}:{{ .Values.image.livenessProbe.tag }}"
74
53
args :
Original file line number Diff line number Diff line change @@ -70,23 +70,6 @@ rules:
70
70
71
71
---
72
72
73
- kind : ClusterRoleBinding
74
- apiVersion : rbac.authorization.k8s.io/v1
75
- metadata :
76
- name : blob-csi-attacher-binding
77
- namespace : {{ .Release.Namespace }}
78
- {{ include "blob.labels" . | indent 2 }}
79
- subjects :
80
- - kind : ServiceAccount
81
- name : csi-blob-controller-sa
82
- namespace : {{ .Release.Namespace }}
83
- roleRef :
84
- kind : ClusterRole
85
- name : blob-external-attacher-role
86
- apiGroup : rbac.authorization.k8s.io
87
-
88
- ---
89
-
90
73
kind : ClusterRole
91
74
apiVersion : rbac.authorization.k8s.io/v1
92
75
metadata :
Original file line number Diff line number Diff line change 7
7
repository : mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner
8
8
tag : v1.4.0
9
9
pullPolicy : IfNotPresent
10
- csiAttacher :
11
- repository : mcr.microsoft.com/oss/kubernetes-csi/csi-attacher
12
- tag : v2.2.0
13
- pullPolicy : IfNotPresent
14
10
livenessProbe :
15
11
repository : mcr.microsoft.com/oss/kubernetes-csi/livenessprobe
16
12
tag : v1.1.0
Original file line number Diff line number Diff line change 46
46
requests :
47
47
cpu : 10m
48
48
memory : 20Mi
49
- - name : csi-attacher
50
- image : mcr.microsoft.com/oss/kubernetes-csi/csi-attacher:v2.2.0
51
- args :
52
- - " -v=5"
53
- - " -csi-address=$(ADDRESS)"
54
- - " -timeout=120s"
55
- - " -leader-election"
56
- env :
57
- - name : ADDRESS
58
- value : /csi/csi.sock
59
- volumeMounts :
60
- - mountPath : /csi
61
- name : socket-dir
62
- resources :
63
- limits :
64
- cpu : 100m
65
- memory : 100Mi
66
- requests :
67
- cpu : 10m
68
- memory : 20Mi
69
49
- name : liveness-probe
70
50
image : mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v1.1.0
71
51
args :
Original file line number Diff line number Diff line change @@ -72,21 +72,6 @@ rules:
72
72
73
73
---
74
74
75
- kind : ClusterRoleBinding
76
- apiVersion : rbac.authorization.k8s.io/v1
77
- metadata :
78
- name : blob-csi-attacher-binding
79
- subjects :
80
- - kind : ServiceAccount
81
- name : csi-blob-controller-sa
82
- namespace : kube-system
83
- roleRef :
84
- kind : ClusterRole
85
- name : blob-external-attacher-role
86
- apiGroup : rbac.authorization.k8s.io
87
-
88
- ---
89
-
90
75
kind : ClusterRole
91
76
apiVersion : rbac.authorization.k8s.io/v1
92
77
metadata :
Original file line number Diff line number Diff line change @@ -42,16 +42,12 @@ pip install yq
42
42
43
43
# Extract images from csi-blob-controller.yaml
44
44
expected_csi_provisioner_image=" $( cat ${PKG_ROOT} /deploy/csi-blob-controller.yaml | yq -r .spec.template.spec.containers[0].image | head -n 1) "
45
- expected_csi_attacher_image=" $( cat ${PKG_ROOT} /deploy/csi-blob-controller.yaml | yq -r .spec.template.spec.containers[1].image | head -n 1) "
46
- expected_liveness_probe_image=" $( cat ${PKG_ROOT} /deploy/csi-blob-controller.yaml | yq -r .spec.template.spec.containers[2].image | head -n 1) "
47
- expected_blob_image=" $( cat ${PKG_ROOT} /deploy/csi-blob-controller.yaml | yq -r .spec.template.spec.containers[3].image | head -n 1) "
45
+ expected_liveness_probe_image=" $( cat ${PKG_ROOT} /deploy/csi-blob-controller.yaml | yq -r .spec.template.spec.containers[1].image | head -n 1) "
46
+ expected_blob_image=" $( cat ${PKG_ROOT} /deploy/csi-blob-controller.yaml | yq -r .spec.template.spec.containers[2].image | head -n 1) "
48
47
49
48
csi_provisioner_image=" $( get_image_from_helm_chart " csiProvisioner" ) "
50
49
validate_image " ${expected_csi_provisioner_image} " " ${csi_provisioner_image} "
51
50
52
- csi_attacher_image=" $( get_image_from_helm_chart " csiAttacher" ) "
53
- validate_image " ${expected_csi_attacher_image} " " ${csi_attacher_image} "
54
-
55
51
liveness_probe_image=" $( get_image_from_helm_chart " livenessProbe" ) "
56
52
validate_image " ${expected_liveness_probe_image} " " ${liveness_probe_image} "
57
53
You can’t perform that action at this time.
0 commit comments