diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index e76add520ba..b1bd4aa34e0 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -1964,6 +1964,16 @@ The PodTemplate must be deleted. release: v1.19 file: test/e2e/common/podtemplates.go +- testname: RuntimeClass API + codename: '[sig-node] RuntimeClass should support RuntimeClasses API operations + [Conformance]' + description: ' The node.k8s.io API group MUST exist in the /apis discovery document. + The node.k8s.io/v1 API group/version MUST exist in the /apis/mode.k8s.io discovery + document. The runtimeclasses resource MUST exist in the /apis/node.k8s.io/v1 discovery + document. The runtimeclasses resource must support create, get, list, watch, update, + patch, delete, and deletecollection.' + release: v1.20 + file: test/e2e/common/runtimeclass.go - testname: LimitRange, resources codename: '[sig-scheduling] LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance]' diff --git a/test/e2e/common/runtimeclass.go b/test/e2e/common/runtimeclass.go index 3b1bc6682b9..761cc19d813 100644 --- a/test/e2e/common/runtimeclass.go +++ b/test/e2e/common/runtimeclass.go @@ -97,7 +97,7 @@ var _ = ginkgo.Describe("[sig-node] RuntimeClass", func() { The runtimeclasses resource MUST exist in the /apis/node.k8s.io/v1 discovery document. The runtimeclasses resource must support create, get, list, watch, update, patch, delete, and deletecollection. */ - ginkgo.It(" [NodeConformance] should support RuntimeClasses API operations", func() { + framework.ConformanceIt(" should support RuntimeClasses API operations", func() { // Setup rcVersion := "v1" rcClient := f.ClientSet.NodeV1().RuntimeClasses()