Merge pull request #132345 from ffromani/e2e-podresourcesapi-labels

e2e: node: fix podresources API feature label
This commit is contained in:
Kubernetes Prow Robot
2025-07-15 13:16:29 -07:00
committed by GitHub
2 changed files with 5 additions and 3 deletions

View File

@@ -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.

View File

@@ -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