From 2e7090692b2b2e595ff5c73b6dbc757877acc485 Mon Sep 17 00:00:00 2001 From: Humble Devassy Chirammal Date: Tue, 9 Jun 2026 12:54:48 +0530 Subject: [PATCH 1/2] csi: update CSI sidecar images in cluster/addons Update snapshot-controller to its latest stable release: - snapshot-controller: v8.5.0 -> v8.6.0 Signed-off-by: Humble Devassy Chirammal --- .../volume-snapshot-controller-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml b/cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml index db8c11cd7c5..c46e327eb80 100644 --- a/cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml +++ b/cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccount: volume-snapshot-controller containers: - name: volume-snapshot-controller - image: registry.k8s.io/sig-storage/snapshot-controller:v8.5.0 + image: registry.k8s.io/sig-storage/snapshot-controller:v8.6.0 args: - "--v=5" - "--metrics-path=/metrics" From 79df48076c198c80863e1993a98669d36015957f Mon Sep 17 00:00:00 2001 From: Humble Devassy Chirammal Date: Tue, 9 Jun 2026 12:55:31 +0530 Subject: [PATCH 2/2] csi: update CSI sidecar images in test manifests Update CSI sidecar container images to their latest stable releases across the e2e test manifests: - csi-provisioner: v6.2.0 -> v6.3.0 - csi-attacher: v4.11.0 -> v4.12.0 - csi-resizer: v2.1.0 -> v2.2.0 - csi-snapshotter: v8.5.0 -> v8.6.0 - csi-node-driver-registrar: v2.16.0 -> v2.17.0 - livenessprobe: v2.18.0 -> v2.19.0 - csi-external-health-monitor-controller: v0.17.0 -> v0.18.0 No change to hostpathplugin (v1.17.1 is current) or csi-snapshot-metadata (v1.0.0 is current). Signed-off-by: Humble Devassy Chirammal --- .../csi-hostpath-plugin.yaml | 14 +++++++------- .../storage-csi/gce-pd/controller_ss.yaml | 8 ++++---- .../storage-csi/gce-pd/node_ds.yaml | 2 +- .../hostpath/hostpath/csi-hostpath-plugin.yaml | 14 +++++++------- .../storage-csi/mock/csi-mock-driver-attacher.yaml | 2 +- .../storage-csi/mock/csi-mock-driver-resizer.yaml | 2 +- .../mock/csi-mock-driver-snapshotter.yaml | 2 +- .../storage-csi/mock/csi-mock-driver.yaml | 4 ++-- .../storage-csi/mock/csi-mock-proxy.yaml | 4 ++-- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/test/e2e/testing-manifests/storage-csi/external-snapshotter/volume-group-snapshots/csi-hostpath-plugin.yaml b/test/e2e/testing-manifests/storage-csi/external-snapshotter/volume-group-snapshots/csi-hostpath-plugin.yaml index a60f54f212e..c8e54f3a53d 100644 --- a/test/e2e/testing-manifests/storage-csi/external-snapshotter/volume-group-snapshots/csi-hostpath-plugin.yaml +++ b/test/e2e/testing-manifests/storage-csi/external-snapshotter/volume-group-snapshots/csi-hostpath-plugin.yaml @@ -262,7 +262,7 @@ spec: name: dev-dir - name: csi-external-health-monitor-controller - image: registry.k8s.io/sig-storage/csi-external-health-monitor-controller:v0.17.0 + image: registry.k8s.io/sig-storage/csi-external-health-monitor-controller:v0.18.0 args: - "--v=5" - "--csi-address=$(ADDRESS)" @@ -276,7 +276,7 @@ spec: mountPath: /csi - name: node-driver-registrar - image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.16.0 + image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.17.0 args: - --v=5 - --csi-address=/csi/csi.sock @@ -317,13 +317,13 @@ spec: volumeMounts: - mountPath: /csi name: socket-dir - image: registry.k8s.io/sig-storage/livenessprobe:v2.18.0 + image: registry.k8s.io/sig-storage/livenessprobe:v2.19.0 args: - --csi-address=/csi/csi.sock - --health-port=9898 - name: csi-attacher - image: registry.k8s.io/sig-storage/csi-attacher:v4.11.0 + image: registry.k8s.io/sig-storage/csi-attacher:v4.12.0 args: - --v=5 - --csi-address=/csi/csi.sock @@ -337,7 +337,7 @@ spec: name: socket-dir - name: csi-provisioner - image: registry.k8s.io/sig-storage/csi-provisioner:v6.2.0 + image: registry.k8s.io/sig-storage/csi-provisioner:v6.3.0 args: - -v=5 - --csi-address=/csi/csi.sock @@ -353,7 +353,7 @@ spec: name: socket-dir - name: csi-resizer - image: registry.k8s.io/sig-storage/csi-resizer:v2.1.0 + image: registry.k8s.io/sig-storage/csi-resizer:v2.2.0 args: - -v=5 - -csi-address=/csi/csi.sock @@ -367,7 +367,7 @@ spec: name: socket-dir - name: csi-snapshotter - image: registry.k8s.io/sig-storage/csi-snapshotter:v8.5.0 + image: registry.k8s.io/sig-storage/csi-snapshotter:v8.6.0 args: - -v=5 - --csi-address=/csi/csi.sock diff --git a/test/e2e/testing-manifests/storage-csi/gce-pd/controller_ss.yaml b/test/e2e/testing-manifests/storage-csi/gce-pd/controller_ss.yaml index f87eded17d5..6d7cbbf1317 100644 --- a/test/e2e/testing-manifests/storage-csi/gce-pd/controller_ss.yaml +++ b/test/e2e/testing-manifests/storage-csi/gce-pd/controller_ss.yaml @@ -21,7 +21,7 @@ spec: serviceAccountName: csi-gce-pd-controller-sa containers: - name: csi-snapshotter - image: registry.k8s.io/sig-storage/csi-snapshotter:v8.5.0 + image: registry.k8s.io/sig-storage/csi-snapshotter:v8.6.0 args: - "--v=5" - "--csi-address=/csi/csi.sock" @@ -39,7 +39,7 @@ spec: - name: socket-dir mountPath: /csi - name: csi-provisioner - image: registry.k8s.io/sig-storage/csi-provisioner:v6.2.0 + image: registry.k8s.io/sig-storage/csi-provisioner:v6.3.0 args: - "--v=5" - "--csi-address=/csi/csi.sock" @@ -73,7 +73,7 @@ spec: - name: socket-dir mountPath: /csi - name: csi-attacher - image: registry.k8s.io/sig-storage/csi-attacher:v4.11.0 + image: registry.k8s.io/sig-storage/csi-attacher:v4.12.0 args: - "--v=5" - "--csi-address=/csi/csi.sock" @@ -102,7 +102,7 @@ spec: - name: socket-dir mountPath: /csi - name: csi-resizer - image: registry.k8s.io/sig-storage/csi-resizer:v2.1.0 + image: registry.k8s.io/sig-storage/csi-resizer:v2.2.0 args: - "--v=5" - "--csi-address=/csi/csi.sock" diff --git a/test/e2e/testing-manifests/storage-csi/gce-pd/node_ds.yaml b/test/e2e/testing-manifests/storage-csi/gce-pd/node_ds.yaml index 99d9f9ce2a0..36c6e6ef125 100644 --- a/test/e2e/testing-manifests/storage-csi/gce-pd/node_ds.yaml +++ b/test/e2e/testing-manifests/storage-csi/gce-pd/node_ds.yaml @@ -13,7 +13,7 @@ spec: spec: containers: - name: csi-driver-registrar - image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.16.0 + image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.17.0 args: - "--v=5" - "--csi-address=/csi/csi.sock" diff --git a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-plugin.yaml b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-plugin.yaml index eb7652282bc..1dd8d161b4f 100644 --- a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-plugin.yaml +++ b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-plugin.yaml @@ -281,7 +281,7 @@ spec: name: dev-dir - name: csi-external-health-monitor-controller - image: registry.k8s.io/sig-storage/csi-external-health-monitor-controller:v0.17.0 + image: registry.k8s.io/sig-storage/csi-external-health-monitor-controller:v0.18.0 args: - "--v=5" - "--csi-address=$(ADDRESS)" @@ -295,7 +295,7 @@ spec: mountPath: /csi - name: node-driver-registrar - image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.16.0 + image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.17.0 args: - --v=5 - --csi-address=/csi/csi.sock @@ -336,13 +336,13 @@ spec: volumeMounts: - mountPath: /csi name: socket-dir - image: registry.k8s.io/sig-storage/livenessprobe:v2.18.0 + image: registry.k8s.io/sig-storage/livenessprobe:v2.19.0 args: - --csi-address=/csi/csi.sock - --health-port=9898 - name: csi-attacher - image: registry.k8s.io/sig-storage/csi-attacher:v4.11.0 + image: registry.k8s.io/sig-storage/csi-attacher:v4.12.0 args: - --v=5 - --csi-address=/csi/csi.sock @@ -356,7 +356,7 @@ spec: name: socket-dir - name: csi-provisioner - image: registry.k8s.io/sig-storage/csi-provisioner:v6.2.0 + image: registry.k8s.io/sig-storage/csi-provisioner:v6.3.0 args: - -v=5 - --csi-address=/csi/csi.sock @@ -372,7 +372,7 @@ spec: name: socket-dir - name: csi-resizer - image: registry.k8s.io/sig-storage/csi-resizer:v2.1.0 + image: registry.k8s.io/sig-storage/csi-resizer:v2.2.0 args: - -v=5 - -csi-address=/csi/csi.sock @@ -386,7 +386,7 @@ spec: name: socket-dir - name: csi-snapshotter - image: registry.k8s.io/sig-storage/csi-snapshotter:v8.5.0 + image: registry.k8s.io/sig-storage/csi-snapshotter:v8.6.0 args: - -v=5 - --csi-address=/csi/csi.sock diff --git a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-attacher.yaml b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-attacher.yaml index 40a2a58587d..84210e1a22b 100644 --- a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-attacher.yaml +++ b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-attacher.yaml @@ -15,7 +15,7 @@ spec: serviceAccountName: csi-mock containers: - name: csi-attacher - image: registry.k8s.io/sig-storage/csi-attacher:v4.11.0 + image: registry.k8s.io/sig-storage/csi-attacher:v4.12.0 args: - --v=5 - --csi-address=$(ADDRESS) diff --git a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-resizer.yaml b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-resizer.yaml index 7415c5eade7..b87541894f9 100644 --- a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-resizer.yaml +++ b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-resizer.yaml @@ -15,7 +15,7 @@ spec: serviceAccountName: csi-mock containers: - name: csi-resizer - image: registry.k8s.io/sig-storage/csi-resizer:v2.1.0 + image: registry.k8s.io/sig-storage/csi-resizer:v2.2.0 args: - "--v=5" - "--csi-address=$(ADDRESS)" diff --git a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-snapshotter.yaml b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-snapshotter.yaml index 130721db8d4..9bd0a110b39 100644 --- a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-snapshotter.yaml +++ b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-snapshotter.yaml @@ -15,7 +15,7 @@ spec: serviceAccountName: csi-mock containers: - name: csi-snapshotter - image: registry.k8s.io/sig-storage/csi-snapshotter:v8.5.0 + image: registry.k8s.io/sig-storage/csi-snapshotter:v8.6.0 args: - "--v=5" - "--csi-address=$(ADDRESS)" diff --git a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver.yaml b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver.yaml index b8f182af5a2..c2c331a5522 100644 --- a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver.yaml +++ b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver.yaml @@ -15,7 +15,7 @@ spec: serviceAccountName: csi-mock containers: - name: csi-provisioner - image: registry.k8s.io/sig-storage/csi-provisioner:v6.2.0 + image: registry.k8s.io/sig-storage/csi-provisioner:v6.3.0 args: - "--csi-address=$(ADDRESS)" # Topology support is needed for the pod rescheduling test @@ -34,7 +34,7 @@ spec: - mountPath: /csi name: socket-dir - name: driver-registrar - image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.16.0 + image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.17.0 args: - --v=5 - --csi-address=/csi/csi.sock diff --git a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-proxy.yaml b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-proxy.yaml index 76b226a8ecd..5fad68e0a3e 100644 --- a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-proxy.yaml +++ b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-proxy.yaml @@ -15,7 +15,7 @@ spec: serviceAccountName: csi-mock containers: - name: csi-provisioner - image: registry.k8s.io/sig-storage/csi-provisioner:v6.2.0 + image: registry.k8s.io/sig-storage/csi-provisioner:v6.3.0 args: - "--csi-address=$(ADDRESS)" # Topology support is needed for the pod rescheduling test @@ -35,7 +35,7 @@ spec: - mountPath: /csi name: socket-dir - name: driver-registrar - image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.16.0 + image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.17.0 args: - --v=5 - --csi-address=/csi/csi.sock