Skip to content

Commit 6c55e2d

Browse files
authored
Merge pull request kubernetes#76523 from msau42/csi-beta-e2e
update to csi e2es to use official images
2 parents 7e2a427 + cb21282 commit 6c55e2d

File tree

7 files changed

+8
-14
lines changed

7 files changed

+8
-14
lines changed

test/e2e/testing-manifests/storage-csi/external-provisioner/rbac.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ rules:
2828
# verbs: ["get", "list"]
2929
- apiGroups: [""]
3030
resources: ["persistentvolumes"]
31-
verbs: ["get", "list", "watch", "update", "create", "delete"]
31+
verbs: ["get", "list", "watch", "create", "delete"]
3232
- apiGroups: [""]
3333
resources: ["persistentvolumeclaims"]
3434
verbs: ["get", "list", "watch", "update"]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec:
3030
serviceAccountName: csi-attacher
3131
containers:
3232
- name: csi-attacher
33-
image: quay.io/k8scsi/csi-attacher:v1.0.1
33+
image: quay.io/k8scsi/csi-attacher:v1.1.0
3434
args:
3535
- --v=5
3636
- --csi-address=$(ADDRESS)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec:
3030
serviceAccountName: csi-provisioner
3131
containers:
3232
- name: csi-provisioner
33-
image: quay.io/k8scsi/csi-provisioner:v1.1.0-rc2
33+
image: quay.io/k8scsi/csi-provisioner:v1.1.0
3434
args:
3535
- "--provisioner=csi-hostpath"
3636
- "--csi-address=$(ADDRESS)"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
hostNetwork: true
1616
containers:
1717
- name: driver-registrar
18-
image: quay.io/k8scsi/csi-node-driver-registrar:v1.0.1
18+
image: quay.io/k8scsi/csi-node-driver-registrar:v1.1.0
1919
args:
2020
- --v=5
2121
- --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: quay.io/k8scsi/csi-attacher:v1.0.1
18+
image: quay.io/k8scsi/csi-attacher:v1.1.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: quay.io/k8scsi/csi-resizer:canary
18+
image: quay.io/k8scsi/csi-resizer:v0.1.0
1919
args:
2020
- "--v=5"
2121
- "--csi-address=$(ADDRESS)"

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

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ spec:
1414
spec:
1515
serviceAccountName: csi-mock
1616
containers:
17-
18-
1917
- name: csi-provisioner
20-
image: quay.io/k8scsi/csi-provisioner:v1.0.1
18+
image: quay.io/k8scsi/csi-provisioner:v1.1.0
2119
args:
2220
- "--provisioner=csi-hostpath"
2321
- "--csi-address=$(ADDRESS)"
@@ -29,10 +27,8 @@ spec:
2927
volumeMounts:
3028
- mountPath: /csi
3129
name: socket-dir
32-
33-
3430
- name: driver-registrar
35-
image: quay.io/k8scsi/csi-node-driver-registrar:v1.0.2
31+
image: quay.io/k8scsi/csi-node-driver-registrar:v1.1.0
3632
args:
3733
- --v=5
3834
- --csi-address=/csi/csi.sock
@@ -51,8 +47,6 @@ spec:
5147
name: socket-dir
5248
- mountPath: /registration
5349
name: registration-dir
54-
55-
5650
- name: mock
5751
image: quay.io/k8scsi/mock-driver:v1.1.1
5852
env:

0 commit comments

Comments
 (0)