Skip to content

Commit 5163909

Browse files
authored
Merge pull request kubernetes#108867 from pohly/storage-capacity-conformance
storage capacity conformance
2 parents 2da1558 + 556794d commit 5163909

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

test/conformance/testdata/conformance.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -2387,6 +2387,16 @@
23872387
pod.
23882388
release: v1.19
23892389
file: test/e2e/scheduling/preemption.go
2390+
- testname: CSIStorageCapacity API
2391+
codename: '[sig-storage] CSIStorageCapacity should support CSIStorageCapacities
2392+
API operations [Conformance]'
2393+
description: ' The storage.k8s.io API group MUST exist in the /apis discovery document.
2394+
The storage.k8s.io/v1 API group/version MUST exist in the /apis/mode.k8s.io discovery
2395+
document. The csistoragecapacities resource MUST exist in the /apis/storage.k8s.io/v1
2396+
discovery document. The csistoragecapacities resource must support create, get,
2397+
list, watch, update, patch, delete, and deletecollection.'
2398+
release: v1.24
2399+
file: test/e2e/storage/csistoragecapacity.go
23902400
- testname: ConfigMap Volume, text data, binary data
23912401
codename: '[sig-storage] ConfigMap binary data should be reflected in volume [NodeConformance]
23922402
[Conformance]'

test/e2e/storage/csistoragecapacity.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,8 @@ var _ = utils.SIGDescribe("CSIStorageCapacity", func() {
4343
The storage.k8s.io/v1 API group/version MUST exist in the /apis/mode.k8s.io discovery document.
4444
The csistoragecapacities resource MUST exist in the /apis/storage.k8s.io/v1 discovery document.
4545
The csistoragecapacities resource must support create, get, list, watch, update, patch, delete, and deletecollection.
46-
TODO (pohly): promote to framework.ConformanceIt
4746
*/
48-
ginkgo.It(" should support CSIStorageCapacities API operations", func() {
47+
framework.ConformanceIt(" should support CSIStorageCapacities API operations", func() {
4948
// Setup
5049
cscVersion := "v1"
5150
cscClient := f.ClientSet.StorageV1().CSIStorageCapacities(f.Namespace.Name)

0 commit comments

Comments
 (0)