Merge pull request #129154 from carlory/e2e-apps

e2e apps: remove unnecessary feature labels
This commit is contained in:
Kubernetes Prow Robot
2025-07-08 04:41:26 -07:00
committed by GitHub
2 changed files with 1 additions and 4 deletions

View File

@@ -42,7 +42,6 @@ import (
"k8s.io/client-go/util/retry"
"k8s.io/client-go/util/workqueue"
batchinternal "k8s.io/kubernetes/pkg/apis/batch"
"k8s.io/kubernetes/test/e2e/feature"
"k8s.io/kubernetes/test/e2e/framework"
e2ejob "k8s.io/kubernetes/test/e2e/framework/job"
e2enode "k8s.io/kubernetes/test/e2e/framework/node"
@@ -445,7 +444,7 @@ done`}
*/
// TODO: once this test is stable, squash the functionality into pre-existing conformance test called "should create
// pods for an Indexed job with completion indexes and specified hostname" earlier in this file.
framework.It("should create pods with completion indexes for an Indexed Job", feature.PodIndexLabel, func(ctx context.Context) {
framework.It("should create pods with completion indexes for an Indexed Job", func(ctx context.Context) {
parallelism := int32(2)
completions := int32(4)
backoffLimit := int32(6) // default value

View File

@@ -325,8 +325,6 @@ var (
// TODO: document the feature (owning SIG, when to use this feature for a test)
PodGarbageCollector = framework.WithFeature(framework.ValidFeatures.Add("PodGarbageCollector"))
PodIndexLabel = framework.WithFeature(framework.ValidFeatures.Add("PodIndexLabel"))
// owner: sig-node
// Marks a test for for pod-level resources feature that requires
// PodLevelResources feature gate to be enabled.