From feea9f3708d1050385c195306c781e4490e3be5e Mon Sep 17 00:00:00 2001 From: Harshal Patil Date: Tue, 15 Sep 2020 12:51:38 +0530 Subject: [PATCH] Move the RuntimeClass tests out of node-kubelet-orphans Signed-off-by: Harshal Patil --- test/e2e/common/runtimeclass.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/common/runtimeclass.go b/test/e2e/common/runtimeclass.go index 9a0970a68ac..21527623745 100644 --- a/test/e2e/common/runtimeclass.go +++ b/test/e2e/common/runtimeclass.go @@ -39,12 +39,12 @@ import ( var _ = ginkgo.Describe("[sig-node] RuntimeClass", func() { f := framework.NewDefaultFramework("runtimeclass") - ginkgo.It("should reject a Pod requesting a non-existent RuntimeClass", func() { + ginkgo.It("should reject a Pod requesting a non-existent RuntimeClass [NodeFeature:RuntimeHandler]", func() { rcName := f.Namespace.Name + "-nonexistent" expectPodRejection(f, e2enode.NewRuntimeClassPod(rcName)) }) - ginkgo.It("should reject a Pod requesting a RuntimeClass with an unconfigured handler", func() { + ginkgo.It("should reject a Pod requesting a RuntimeClass with an unconfigured handler [NodeFeature:RuntimeHandler]", func() { handler := f.Namespace.Name + "-handler" rcName := createRuntimeClass(f, "unconfigured-handler", handler) pod := f.PodClient().Create(e2enode.NewRuntimeClassPod(rcName)) @@ -61,7 +61,7 @@ var _ = ginkgo.Describe("[sig-node] RuntimeClass", func() { expectPodSuccess(f, pod) }) - ginkgo.It("should reject a Pod requesting a deleted RuntimeClass", func() { + ginkgo.It("should reject a Pod requesting a deleted RuntimeClass [NodeFeature:RuntimeHandler]", func() { rcName := createRuntimeClass(f, "delete-me", "runc") rcClient := f.ClientSet.NodeV1beta1().RuntimeClasses()