@@ -39,12 +39,12 @@ import (
39
39
var _ = ginkgo .Describe ("[sig-node] RuntimeClass" , func () {
40
40
f := framework .NewDefaultFramework ("runtimeclass" )
41
41
42
- ginkgo .It ("should reject a Pod requesting a non-existent RuntimeClass" , func () {
42
+ ginkgo .It ("should reject a Pod requesting a non-existent RuntimeClass [NodeFeature:RuntimeHandler] " , func () {
43
43
rcName := f .Namespace .Name + "-nonexistent"
44
44
expectPodRejection (f , e2enode .NewRuntimeClassPod (rcName ))
45
45
})
46
46
47
- ginkgo .It ("should reject a Pod requesting a RuntimeClass with an unconfigured handler" , func () {
47
+ ginkgo .It ("should reject a Pod requesting a RuntimeClass with an unconfigured handler [NodeFeature:RuntimeHandler] " , func () {
48
48
handler := f .Namespace .Name + "-handler"
49
49
rcName := createRuntimeClass (f , "unconfigured-handler" , handler )
50
50
pod := f .PodClient ().Create (e2enode .NewRuntimeClassPod (rcName ))
@@ -61,7 +61,7 @@ var _ = ginkgo.Describe("[sig-node] RuntimeClass", func() {
61
61
expectPodSuccess (f , pod )
62
62
})
63
63
64
- ginkgo .It ("should reject a Pod requesting a deleted RuntimeClass" , func () {
64
+ ginkgo .It ("should reject a Pod requesting a deleted RuntimeClass [NodeFeature:RuntimeHandler] " , func () {
65
65
rcName := createRuntimeClass (f , "delete-me" , "runc" )
66
66
rcClient := f .ClientSet .NodeV1beta1 ().RuntimeClasses ()
67
67
0 commit comments