File tree 6 files changed +8
-20
lines changed
6 files changed +8
-20
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ The following table lists the configurable parameters of the latest Azure Blob S
75
75
| ` image.nodeDriverRegistrar.tag ` | csi-node-driver-registrar docker image tag | ` v2.13.0 ` |
76
76
| ` image.nodeDriverRegistrar.pullPolicy ` | csi-node-driver-registrar image pull policy | ` IfNotPresent ` |
77
77
| ` image.csiResizer.repository ` | csi-resizer docker image | ` mcr.microsoft.com/oss/kubernetes-csi/csi-resizer ` |
78
- | ` image.csiResizer.tag ` | csi-resizer docker image tag | ` v1.13.1 ` |
78
+ | ` image.csiResizer.tag ` | csi-resizer docker image tag | ` v1.13.2 ` |
79
79
| ` image.csiResizer.pullPolicy ` | csi-resizer image pull policy | ` IfNotPresent ` |
80
80
| ` imagePullSecrets ` | Specify docker-registry secret names as an array | [ ] (does not add image pull secrets to deployed pods) |
81
81
| ` cloud ` | the cloud environment the driver is running on | ` AzurePublicCloud ` |
Original file line number Diff line number Diff line change @@ -194,15 +194,12 @@ spec:
194
194
name : socket-dir
195
195
- mountPath : /etc/kubernetes/
196
196
name : azure-cred
197
- {{- if and (eq .Values.cloud "AzureStackCloud") (ne .Values.linux.distro "fedora") }}
197
+ {{- if or (eq .Values.cloud "AzureStackCloud") (eq .Values.linux.distro "fedora") }}
198
198
- name : ssl
199
199
mountPath : /etc/ssl/certs
200
200
readOnly : true
201
201
{{- end }}
202
202
{{- if eq .Values.linux.distro "fedora" }}
203
- - name : ssl
204
- mountPath : /etc/ssl/certs
205
- readOnly : true
206
203
- name : ssl-pki
207
204
mountPath : /etc/pki/ca-trust/extracted
208
205
readOnly : true
@@ -243,15 +240,12 @@ spec:
243
240
hostPath :
244
241
path : /etc/kubernetes/
245
242
type : DirectoryOrCreate
246
- {{- if and (eq .Values.cloud "AzureStackCloud") (ne .Values.linux.distro "fedora") }}
243
+ {{- if or (eq .Values.cloud "AzureStackCloud") (eq .Values.linux.distro "fedora") }}
247
244
- name : ssl
248
245
hostPath :
249
246
path : /etc/ssl/certs
250
247
{{- end }}
251
248
{{- if eq .Values.linux.distro "fedora" }}
252
- - name : ssl
253
- hostPath :
254
- path : /etc/ssl/certs
255
249
- name : ssl-pki
256
250
hostPath :
257
251
path : /etc/pki/ca-trust/extracted
Original file line number Diff line number Diff line change @@ -238,15 +238,12 @@ spec:
238
238
name : azure-cred
239
239
- mountPath : /mnt
240
240
name : blob-cache
241
- {{- if and (eq .Values.cloud "AzureStackCloud") (ne .Values.linux.distro "fedora") }}
241
+ {{- if or (eq .Values.cloud "AzureStackCloud") (eq .Values.linux.distro "fedora") }}
242
242
- name : ssl
243
243
mountPath : /etc/ssl/certs
244
244
readOnly : true
245
245
{{- end }}
246
- {{- if and (eq .Values.cloud "AzureStackCloud") (ne .Values.linux.distro "fedora") }}
247
- - name : ssl
248
- mountPath : /etc/ssl/certs
249
- readOnly : true
246
+ {{- if eq .Values.linux.distro "fedora" }}
250
247
- name : ssl-pki
251
248
mountPath : /etc/pki/ca-trust/extracted
252
249
readOnly : true
@@ -311,15 +308,12 @@ spec:
311
308
- hostPath :
312
309
path : {{ .Values.node.blobfuseCachePath }}
313
310
name : blob-cache
314
- {{- if eq .Values.cloud "AzureStackCloud" }}
311
+ {{- if or ( eq .Values.cloud "AzureStackCloud") (eq .Values.linux.distro "fedora") }}
315
312
- name : ssl
316
313
hostPath :
317
314
path : /etc/ssl/certs
318
315
{{- end }}
319
316
{{- if eq .Values.linux.distro "fedora" }}
320
- - name : ssl
321
- hostPath :
322
- path : /etc/ssl/certs
323
317
- name : ssl-pki
324
318
hostPath :
325
319
path : /etc/pki/ca-trust/extracted
Original file line number Diff line number Diff line change 18
18
pullPolicy : IfNotPresent
19
19
csiResizer :
20
20
repository : /oss/kubernetes-csi/csi-resizer
21
- tag : v1.13.1
21
+ tag : v1.13.2
22
22
pullPolicy : IfNotPresent
23
23
24
24
cloud : AzurePublicCloud
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ spec:
136
136
drop :
137
137
- ALL
138
138
- name : csi-resizer
139
- image : mcr.microsoft.com/oss/kubernetes-csi/csi-resizer:v1.13.1
139
+ image : mcr.microsoft.com/oss/kubernetes-csi/csi-resizer:v1.13.2
140
140
args :
141
141
- " -csi-address=$(ADDRESS)"
142
142
- " -v=2"
You can’t perform that action at this time.
0 commit comments