Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-1.29] chore: upgrade sidecar image versions #2520

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified charts/latest/azuredisk-csi-driver-v1.29.9.tgz
Binary file not shown.
12 changes: 6 additions & 6 deletions charts/latest/azuredisk-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.2
tag: v5.1.0
pullPolicy: IfNotPresent
csiAttacher:
repository: /oss/kubernetes-csi/csi-attacher
tag: v4.6.1
tag: v4.7.0
pullPolicy: IfNotPresent
csiResizer:
repository: /oss/kubernetes-csi/csi-resizer
tag: v1.11.1
tag: v1.12.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
Expand Down Expand Up @@ -132,11 +132,11 @@ snapshot:
image:
csiSnapshotter:
repository: /oss/kubernetes-csi/csi-snapshotter
tag: v8.0.1
tag: v8.1.0
pullPolicy: IfNotPresent
csiSnapshotController:
repository: /oss/kubernetes-csi/snapshot-controller
tag: v8.0.1
tag: v8.1.0
pullPolicy: IfNotPresent
snapshotController:
name: csi-snapshot-controller
Expand Down
10 changes: 5 additions & 5 deletions deploy/csi-azuredisk-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.2
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.1.0
args:
- "--feature-gates=Topology=true,HonorPVReclaimPolicy=true"
- "--csi-address=$(ADDRESS)"
Expand Down Expand Up @@ -64,7 +64,7 @@ spec:
drop:
- ALL
- name: csi-attacher
image: mcr.microsoft.com/oss/kubernetes-csi/csi-attacher:v4.6.1
image: mcr.microsoft.com/oss/kubernetes-csi/csi-attacher:v4.7.0
args:
- "-v=2"
- "-csi-address=$(ADDRESS)"
Expand All @@ -91,7 +91,7 @@ spec:
drop:
- ALL
- name: csi-snapshotter
image: mcr.microsoft.com/oss/kubernetes-csi/csi-snapshotter:v8.0.1
image: mcr.microsoft.com/oss/kubernetes-csi/csi-snapshotter:v8.1.0
args:
- "-csi-address=$(ADDRESS)"
- "-leader-election"
Expand All @@ -115,7 +115,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 All @@ -141,7 +141,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
2 changes: 1 addition & 1 deletion 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.13.0
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.14.0
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--probe-timeout=30s"
Expand Down
2 changes: 1 addition & 1 deletion 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.13.0
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.14.0
args:
- --csi-address=/csi/csi.sock
- --probe-timeout=3s
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-snapshot-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
effect: "NoSchedule"
containers:
- name: csi-snapshot-controller
image: mcr.microsoft.com/oss/kubernetes-csi/snapshot-controller:v8.0.1
image: mcr.microsoft.com/oss/kubernetes-csi/snapshot-controller:v8.1.0
args:
- "--v=2"
- "--leader-election=true"
Expand Down
Loading