Skip to content

Commit

Permalink
Merge pull request #1602 from andyzhangx/upgrade-csi-sidecar-images4
Browse files Browse the repository at this point in the history
chore: upgrade sidecar image versions
  • Loading branch information
andyzhangx committed Sep 18, 2024
2 parents 6162d24 + b4eb9ec commit a1aa61a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ The following table lists the configurable parameters of the latest Azure Blob S
| `image.blob.tag` | blob-csi-driver docker image tag | `latest` |
| `image.blob.pullPolicy` | blob-csi-driver image pull policy | `IfNotPresent` |
| `image.csiProvisioner.repository` | csi-provisioner docker image | `mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner` |
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v5.0.1` |
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v5.1.0` |
| `image.csiProvisioner.pullPolicy` | csi-provisioner image pull policy | `IfNotPresent` |
| `image.livenessProbe.repository` | liveness-probe docker image | `mcr.microsoft.com/oss/kubernetes-csi/livenessprobe` |
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.13.0` |
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.14.0` |
| `image.livenessProbe.pullPolicy` | liveness-probe image pull policy | `IfNotPresent` |
| `image.nodeDriverRegistrar.repository` | csi-node-driver-registrar docker image | `mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar` |
| `image.nodeDriverRegistrar.tag` | csi-node-driver-registrar docker image tag | `v2.12.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.11.1` |
| `image.csiResizer.tag` | csi-resizer docker image tag | `v1.12.0` |
| `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` |
Expand Down
Binary file modified charts/latest/blob-csi-driver-v0.0.0.tgz
Binary file not shown.
6 changes: 3 additions & 3 deletions charts/latest/blob-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ image:
pullPolicy: IfNotPresent
csiProvisioner:
repository: /oss/kubernetes-csi/csi-provisioner
tag: v5.0.1
tag: v5.1.0
pullPolicy: IfNotPresent
livenessProbe:
repository: /oss/kubernetes-csi/livenessprobe
tag: v2.13.0
tag: v2.14.0
pullPolicy: IfNotPresent
nodeDriverRegistrar:
repository: /oss/kubernetes-csi/csi-node-driver-registrar
tag: v2.12.0
pullPolicy: IfNotPresent
csiResizer:
repository: /oss/kubernetes-csi/csi-resizer
tag: v1.11.1
tag: v1.12.0
pullPolicy: IfNotPresent

cloud: AzurePublicCloud
Expand Down
6 changes: 3 additions & 3 deletions deploy/csi-blob-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
effect: "NoSchedule"
containers:
- name: csi-provisioner
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.0.1
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.1.0
args:
- "-v=2"
- "--csi-address=$(ADDRESS)"
Expand Down Expand Up @@ -62,7 +62,7 @@ spec:
drop:
- ALL
- name: liveness-probe
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.13.0
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.14.0
args:
- --csi-address=/csi/csi.sock
- --probe-timeout=3s
Expand Down Expand Up @@ -128,7 +128,7 @@ spec:
drop:
- ALL
- name: csi-resizer
image: mcr.microsoft.com/oss/kubernetes-csi/csi-resizer:v1.11.1
image: mcr.microsoft.com/oss/kubernetes-csi/csi-resizer:v1.12.0
args:
- "-csi-address=$(ADDRESS)"
- "-v=2"
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-blob-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ spec:
volumeMounts:
- mountPath: /csi
name: socket-dir
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.13.0
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.14.0
args:
- --csi-address=/csi/csi.sock
- --probe-timeout=3s
Expand Down

0 comments on commit a1aa61a

Please sign in to comment.