Merge pull request #118478 from ii/promote-csidriver-test

Promote test for StorageV1CSIDriver Endpoints + 3 Endpoints
This commit is contained in:
Kubernetes Prow Robot 2023-06-07 17:52:12 -07:00 committed by GitHub
commit a2b8297a89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 1 deletions

View File

@ -2565,6 +2565,15 @@
pod.
release: v1.19
file: test/e2e/scheduling/preemption.go
- testname: CSIDriver, lifecycle
codename: '[sig-storage] CSIInlineVolumes should run through the lifecycle of a
CSIDriver [Conformance]'
description: Creating two CSIDrivers MUST succeed. Patching a CSIDriver MUST succeed
with its new label found. Updating a CSIDriver MUST succeed with its new label
found. Two CSIDrivers MUST be found when listed. Deleting the first CSIDriver
MUST succeed. Deleting the second CSIDriver via deleteCollection MUST succeed.
release: v1.28
file: test/e2e/storage/csi_inline.go
- testname: CSIInlineVolumes should support Pods with inline volumes
codename: '[sig-storage] CSIInlineVolumes should support CSIVolumeSource in Pod
API [Conformance]'

View File

@ -230,7 +230,16 @@ var _ = utils.SIGDescribe("CSIInlineVolumes", func() {
}
})
ginkgo.It("should run through the lifecycle of a CSIDriver", func(ctx context.Context) {
/*
Release: v1.28
Testname: CSIDriver, lifecycle
Description: Creating two CSIDrivers MUST succeed. Patching a CSIDriver MUST
succeed with its new label found. Updating a CSIDriver MUST succeed with its
new label found. Two CSIDrivers MUST be found when listed. Deleting the first
CSIDriver MUST succeed. Deleting the second CSIDriver via deleteCollection
MUST succeed.
*/
framework.ConformanceIt("should run through the lifecycle of a CSIDriver", func(ctx context.Context) {
// Create client
client := f.ClientSet.StorageV1().CSIDrivers()
defaultFSGroupPolicy := storagev1.ReadWriteOnceWithFSTypeFSGroupPolicy