Skip to content

Commit 1d7b8cc

Browse files
authored
Merge pull request kubernetes#129618 from gnufied/bump-csi-sidecars-132
Bump CSI sidecars to fix CI issues and such
2 parents 766e594 + bfce77d commit 1d7b8cc

File tree

8 files changed

+12
-17
lines changed

8 files changed

+12
-17
lines changed

test/e2e/storage/csimock/csi_volume_expansion.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,6 @@ var _ = utils.SIGDescribe("CSI Mock volume expansion", func() {
182182
framework.ExpectNoError(err, "While waiting for pvc to have fs resizing condition")
183183
pvc = npvc
184184

185-
inProgressConditions := pvc.Status.Conditions
186-
if len(inProgressConditions) > 0 {
187-
gomega.Expect(inProgressConditions[0].Type).To(gomega.Equal(v1.PersistentVolumeClaimFileSystemResizePending), "pvc must have fs resizing condition")
188-
}
189-
190185
ginkgo.By("Deleting the previously created pod")
191186
if test.simulatedCSIDriverError == expansionFailedMissingStagingPath {
192187
e2epod.DeletePodOrFail(ctx, m.cs, pod.Namespace, pod.Name)

test/e2e/testing-manifests/storage-csi/gce-pd/controller_ss.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
serviceAccountName: csi-gce-pd-controller-sa
2222
containers:
2323
- name: csi-snapshotter
24-
image: registry.k8s.io/sig-storage/csi-snapshotter:v8.1.0
24+
image: registry.k8s.io/sig-storage/csi-snapshotter:v8.2.0
2525
args:
2626
- "--v=5"
2727
- "--csi-address=/csi/csi.sock"
@@ -73,7 +73,7 @@ spec:
7373
- name: socket-dir
7474
mountPath: /csi
7575
- name: csi-attacher
76-
image: registry.k8s.io/sig-storage/csi-attacher:v4.7.0
76+
image: registry.k8s.io/sig-storage/csi-attacher:v4.8.0
7777
args:
7878
- "--v=5"
7979
- "--csi-address=/csi/csi.sock"
@@ -102,7 +102,7 @@ spec:
102102
- name: socket-dir
103103
mountPath: /csi
104104
- name: csi-resizer
105-
image: registry.k8s.io/sig-storage/csi-resizer:v1.12.0
105+
image: registry.k8s.io/sig-storage/csi-resizer:v1.13.1
106106
args:
107107
- "--v=5"
108108
- "--csi-address=/csi/csi.sock"

test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-plugin.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ spec:
276276
mountPath: /csi
277277

278278
- name: node-driver-registrar
279-
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.12.0
279+
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.13.0
280280
args:
281281
- --v=5
282282
- --csi-address=/csi/csi.sock
@@ -304,13 +304,13 @@ spec:
304304
volumeMounts:
305305
- mountPath: /csi
306306
name: socket-dir
307-
image: registry.k8s.io/sig-storage/livenessprobe:v2.14.0
307+
image: registry.k8s.io/sig-storage/livenessprobe:v2.15.0
308308
args:
309309
- --csi-address=/csi/csi.sock
310310
- --health-port=9898
311311

312312
- name: csi-attacher
313-
image: registry.k8s.io/sig-storage/csi-attacher:v4.7.0
313+
image: registry.k8s.io/sig-storage/csi-attacher:v4.8.0
314314
args:
315315
- --v=5
316316
- --csi-address=/csi/csi.sock
@@ -340,7 +340,7 @@ spec:
340340
name: socket-dir
341341

342342
- name: csi-resizer
343-
image: registry.k8s.io/sig-storage/csi-resizer:v1.12.0
343+
image: registry.k8s.io/sig-storage/csi-resizer:v1.13.1
344344
args:
345345
- -v=5
346346
- -csi-address=/csi/csi.sock

test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-attacher.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: csi-mock
1616
containers:
1717
- name: csi-attacher
18-
image: registry.k8s.io/sig-storage/csi-attacher:v4.7.0
18+
image: registry.k8s.io/sig-storage/csi-attacher:v4.8.0
1919
args:
2020
- --v=5
2121
- --csi-address=$(ADDRESS)

test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-resizer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: csi-mock
1616
containers:
1717
- name: csi-resizer
18-
image: registry.k8s.io/sig-storage/csi-resizer:v1.12.0
18+
image: registry.k8s.io/sig-storage/csi-resizer:v1.13.1
1919
args:
2020
- "--v=5"
2121
- "--csi-address=$(ADDRESS)"

test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-snapshotter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: csi-mock
1616
containers:
1717
- name: csi-snapshotter
18-
image: registry.k8s.io/sig-storage/csi-snapshotter:v8.1.0
18+
image: registry.k8s.io/sig-storage/csi-snapshotter:v8.2.0
1919
args:
2020
- "--v=5"
2121
- "--csi-address=$(ADDRESS)"

test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
- mountPath: /csi
3535
name: socket-dir
3636
- name: driver-registrar
37-
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.12.0
37+
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.13.0
3838
args:
3939
- --v=5
4040
- --csi-address=/csi/csi.sock

test/e2e/testing-manifests/storage-csi/mock/csi-mock-proxy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
- mountPath: /csi
3636
name: socket-dir
3737
- name: driver-registrar
38-
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.12.0
38+
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.13.0
3939
args:
4040
- --v=5
4141
- --csi-address=/csi/csi.sock

0 commit comments

Comments
 (0)