diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index 795dddf6ef9..cf7813fce74 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -2383,6 +2383,16 @@ pod. release: v1.19 file: test/e2e/scheduling/preemption.go +- testname: CSIStorageCapacity API + codename: '[sig-storage] CSIStorageCapacity should support CSIStorageCapacities + API operations [Conformance]' + description: ' The storage.k8s.io API group MUST exist in the /apis discovery document. + The storage.k8s.io/v1 API group/version MUST exist in the /apis/mode.k8s.io discovery + document. The csistoragecapacities resource MUST exist in the /apis/storage.k8s.io/v1 + discovery document. The csistoragecapacities resource must support create, get, + list, watch, update, patch, delete, and deletecollection.' + release: v1.24 + file: test/e2e/storage/csistoragecapacity.go - testname: ConfigMap Volume, text data, binary data codename: '[sig-storage] ConfigMap binary data should be reflected in volume [NodeConformance] [Conformance]' diff --git a/test/e2e/storage/csistoragecapacity.go b/test/e2e/storage/csistoragecapacity.go index 9c5401f85a4..3e648d6fea5 100644 --- a/test/e2e/storage/csistoragecapacity.go +++ b/test/e2e/storage/csistoragecapacity.go @@ -43,9 +43,8 @@ var _ = utils.SIGDescribe("CSIStorageCapacity", func() { The storage.k8s.io/v1 API group/version MUST exist in the /apis/mode.k8s.io discovery document. The csistoragecapacities resource MUST exist in the /apis/storage.k8s.io/v1 discovery document. The csistoragecapacities resource must support create, get, list, watch, update, patch, delete, and deletecollection. - TODO (pohly): promote to framework.ConformanceIt */ - ginkgo.It(" should support CSIStorageCapacities API operations", func() { + framework.ConformanceIt(" should support CSIStorageCapacities API operations", func() { // Setup cscVersion := "v1" cscClient := f.ClientSet.StorageV1().CSIStorageCapacities(f.Namespace.Name)