diff --git a/test/e2e/feature/feature.go b/test/e2e/feature/feature.go index e096674e36f..b13d5706080 100644 --- a/test/e2e/feature/feature.go +++ b/test/e2e/feature/feature.go @@ -352,8 +352,10 @@ var ( // TODO: document the feature (owning SIG, when to use this feature for a test) PodReadyToStartContainersCondition = framework.WithFeature(framework.ValidFeatures.Add("PodReadyToStartContainersCondition")) - // TODO: document the feature (owning SIG, when to use this feature for a test) - PodResources = framework.WithFeature(framework.ValidFeatures.Add("PodResources")) + // Owner: sig-node + // Marks tests which exercise or consume the kubelet-local Pod Resources API + // see: KEPs 606, 2043; see: pkg/kubelet/apis/podresources/ + PodResourcesAPI = framework.WithFeature(framework.ValidFeatures.Add("PodResourcesAPI")) // Owner: sig-node // Verify ProcMount feature. diff --git a/test/e2e_node/podresources_test.go b/test/e2e_node/podresources_test.go index b1e9c840125..8676b96d6c6 100644 --- a/test/e2e_node/podresources_test.go +++ b/test/e2e_node/podresources_test.go @@ -947,7 +947,7 @@ func podresourcesGetTests(ctx context.Context, f *framework.Framework, cli kubel } // Serial because the test updates kubelet configuration. -var _ = SIGDescribe("POD Resources", framework.WithSerial(), feature.PodResources, func() { +var _ = SIGDescribe("POD Resources API", framework.WithSerial(), feature.PodResourcesAPI, func() { f := framework.NewDefaultFramework("podresources-test") f.NamespacePodSecurityLevel = admissionapi.LevelPrivileged