diff --git a/charts/README.md b/charts/README.md index 6f96feee1..34a5dae6b 100644 --- a/charts/README.md +++ b/charts/README.md @@ -75,7 +75,7 @@ The following table lists the configurable parameters of the latest Azure Blob S | `image.nodeDriverRegistrar.tag` | csi-node-driver-registrar docker image tag | `v2.13.0` | | `image.nodeDriverRegistrar.pullPolicy` | csi-node-driver-registrar image pull policy | `IfNotPresent` | | `image.csiResizer.repository` | csi-resizer docker image | `mcr.microsoft.com/oss/kubernetes-csi/csi-resizer` | -| `image.csiResizer.tag` | csi-resizer docker image tag | `v1.13.1` | +| `image.csiResizer.tag` | csi-resizer docker image tag | `v1.13.2` | | `image.csiResizer.pullPolicy` | csi-resizer image pull policy | `IfNotPresent` | | `imagePullSecrets` | Specify docker-registry secret names as an array | [] (does not add image pull secrets to deployed pods) | | `cloud` | the cloud environment the driver is running on | `AzurePublicCloud` | diff --git a/charts/latest/blob-csi-driver-1.25.3.tgz b/charts/latest/blob-csi-driver-1.25.3.tgz index 9b3aaa685..26617156f 100644 Binary files a/charts/latest/blob-csi-driver-1.25.3.tgz and b/charts/latest/blob-csi-driver-1.25.3.tgz differ diff --git a/charts/latest/blob-csi-driver/templates/csi-blob-controller.yaml b/charts/latest/blob-csi-driver/templates/csi-blob-controller.yaml index 151f9eb05..9b443e7ee 100644 --- a/charts/latest/blob-csi-driver/templates/csi-blob-controller.yaml +++ b/charts/latest/blob-csi-driver/templates/csi-blob-controller.yaml @@ -196,15 +196,12 @@ spec: name: azcopy-dir - mountPath: /etc/kubernetes/ name: azure-cred - {{- if and (eq .Values.cloud "AzureStackCloud") (ne .Values.linux.distro "fedora") }} + {{- if or (eq .Values.cloud "AzureStackCloud") (eq .Values.linux.distro "fedora") }} - name: ssl mountPath: /etc/ssl/certs readOnly: true {{- end }} {{- if eq .Values.linux.distro "fedora" }} - - name: ssl - mountPath: /etc/ssl/certs - readOnly: true - name: ssl-pki mountPath: /etc/pki/ca-trust/extracted readOnly: true @@ -247,15 +244,12 @@ spec: hostPath: path: /etc/kubernetes/ type: DirectoryOrCreate - {{- if and (eq .Values.cloud "AzureStackCloud") (ne .Values.linux.distro "fedora") }} + {{- if or (eq .Values.cloud "AzureStackCloud") (eq .Values.linux.distro "fedora") }} - name: ssl hostPath: path: /etc/ssl/certs {{- end }} {{- if eq .Values.linux.distro "fedora" }} - - name: ssl - hostPath: - path: /etc/ssl/certs - name: ssl-pki hostPath: path: /etc/pki/ca-trust/extracted diff --git a/charts/latest/blob-csi-driver/templates/csi-blob-node.yaml b/charts/latest/blob-csi-driver/templates/csi-blob-node.yaml index 7c53b4714..25794fc07 100644 --- a/charts/latest/blob-csi-driver/templates/csi-blob-node.yaml +++ b/charts/latest/blob-csi-driver/templates/csi-blob-node.yaml @@ -238,15 +238,12 @@ spec: name: azure-cred - mountPath: /mnt name: blob-cache - {{- if and (eq .Values.cloud "AzureStackCloud") (ne .Values.linux.distro "fedora") }} + {{- if or (eq .Values.cloud "AzureStackCloud") (eq .Values.linux.distro "fedora") }} - name: ssl mountPath: /etc/ssl/certs readOnly: true {{- end }} - {{- if and (eq .Values.cloud "AzureStackCloud") (ne .Values.linux.distro "fedora") }} - - name: ssl - mountPath: /etc/ssl/certs - readOnly: true + {{- if eq .Values.linux.distro "fedora" }} - name: ssl-pki mountPath: /etc/pki/ca-trust/extracted readOnly: true @@ -311,15 +308,12 @@ spec: - hostPath: path: {{ .Values.node.blobfuseCachePath }} name: blob-cache - {{- if eq .Values.cloud "AzureStackCloud" }} + {{- if or (eq .Values.cloud "AzureStackCloud") (eq .Values.linux.distro "fedora") }} - name: ssl hostPath: path: /etc/ssl/certs {{- end }} {{- if eq .Values.linux.distro "fedora" }} - - name: ssl - hostPath: - path: /etc/ssl/certs - name: ssl-pki hostPath: path: /etc/pki/ca-trust/extracted diff --git a/charts/latest/blob-csi-driver/values.yaml b/charts/latest/blob-csi-driver/values.yaml index 048d7c062..3f7033b40 100644 --- a/charts/latest/blob-csi-driver/values.yaml +++ b/charts/latest/blob-csi-driver/values.yaml @@ -18,7 +18,7 @@ image: pullPolicy: IfNotPresent csiResizer: repository: /oss/kubernetes-csi/csi-resizer - tag: v1.13.1 + tag: v1.13.2 pullPolicy: IfNotPresent cloud: AzurePublicCloud diff --git a/deploy/csi-blob-controller.yaml b/deploy/csi-blob-controller.yaml index b5b60801d..28a34bbfc 100644 --- a/deploy/csi-blob-controller.yaml +++ b/deploy/csi-blob-controller.yaml @@ -138,7 +138,7 @@ spec: drop: - ALL - name: csi-resizer - image: mcr.microsoft.com/oss/kubernetes-csi/csi-resizer:v1.13.1 + image: mcr.microsoft.com/oss/kubernetes-csi/csi-resizer:v1.13.2 args: - "-csi-address=$(ADDRESS)" - "-v=2"