Skip to content

Commit

Permalink
chore: upgrade sidecar images
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed Oct 20, 2023
1 parent 95caa81 commit 731f054
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ The following table lists the configurable parameters of the latest Azure Disk C
| `image.csiResizer.tag` | csi-resizer docker image tag | `v1.9.1` |
| `image.csiResizer.pullPolicy` | csi-resizer image pull policy | `IfNotPresent` |
| `image.livenessProbe.repository` | liveness-probe docker image | `/oss/kubernetes-csi/livenessprobe` |
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.10.0` |
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.11.0` |
| `image.livenessProbe.pullPolicy` | liveness-probe image pull policy | `IfNotPresent` |
| `image.nodeDriverRegistrar.repository` | csi-node-driver-registrar docker image | `/oss/kubernetes-csi/csi-node-driver-registrar` |
| `image.nodeDriverRegistrar.tag` | csi-node-driver-registrar docker image tag | `v2.8.0` |
| `image.nodeDriverRegistrar.tag` | csi-node-driver-registrar docker image tag | `v2.9.0` |
| `image.nodeDriverRegistrar.pullPolicy` | csi-node-driver-registrar image pull policy | `IfNotPresent` |
| `imagePullSecrets` | Specify docker-registry secret names as an array | [] (does not add image pull secrets to deployed pods) | |
| `serviceAccount.create` | whether create service account of csi-azuredisk-controller, csi-azuredisk-node, and snapshot-controller| `true` |
Expand Down
Binary file modified charts/latest/azuredisk-csi-driver-v0.0.0.tgz
Binary file not shown.
4 changes: 2 additions & 2 deletions charts/latest/azuredisk-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ image:
pullPolicy: IfNotPresent
livenessProbe:
repository: /oss/kubernetes-csi/livenessprobe
tag: v2.10.0
tag: v2.11.0
pullPolicy: IfNotPresent
nodeDriverRegistrar:
repository: /oss/kubernetes-csi/csi-node-driver-registrar
tag: v2.8.0
tag: v2.9.0
pullPolicy: IfNotPresent

serviceAccount:
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-azuredisk-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ spec:
cpu: 10m
memory: 20Mi
- name: liveness-probe
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.10.0
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.11.0
args:
- --csi-address=/csi/csi.sock
- --probe-timeout=3s
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-azuredisk-node-windows-hostprocess.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
- "New-Item -ItemType Directory -Path C:\\var\\lib\\kubelet\\plugins\\disk.csi.azure.com\\ -Force"
containers:
- name: node-driver-registrar
image: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar:v2.8.0
image: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar:v2.9.0
imagePullPolicy: IfNotPresent
command:
- "csi-node-driver-registrar.exe"
Expand Down
4 changes: 2 additions & 2 deletions deploy/csi-azuredisk-node-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
volumeMounts:
- mountPath: C:\csi
name: plugin-dir
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.10.0
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.11.0
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--probe-timeout=3s"
Expand All @@ -58,7 +58,7 @@ spec:
cpu: 10m
memory: 40Mi
- name: node-driver-registrar
image: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar:v2.8.0
image: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar:v2.9.0
args:
- "--v=2"
- "--csi-address=$(CSI_ENDPOINT)"
Expand Down
4 changes: 2 additions & 2 deletions deploy/csi-azuredisk-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
volumeMounts:
- mountPath: /csi
name: socket-dir
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.10.0
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.11.0
args:
- --csi-address=/csi/csi.sock
- --probe-timeout=3s
Expand All @@ -55,7 +55,7 @@ spec:
cpu: 10m
memory: 20Mi
- name: node-driver-registrar
image: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar:v2.8.0
image: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar:v2.9.0
args:
- --csi-address=$(ADDRESS)
- --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
Expand Down

0 comments on commit 731f054

Please sign in to comment.