Remove feature label NodeOutOfServiceVolumeDetach

This commit is contained in:
carlory
2025-01-17 15:59:51 +08:00
parent 5ec7b65318
commit 7c53a5aaa4
2 changed files with 1 additions and 6 deletions

View File

@@ -347,9 +347,6 @@ var (
// TODO: document the feature (owning SIG, when to use this feature for a test)
NodeLogQuery = framework.WithFeature(framework.ValidFeatures.Add("NodeLogQuery"))
// TODO: document the feature (owning SIG, when to use this feature for a test)
NodeOutOfServiceVolumeDetach = framework.WithFeature(framework.ValidFeatures.Add("NodeOutOfServiceVolumeDetach"))
// Owner: sig-node
// Tests aiming to verify oom_score functionality
OOMScoreAdj = framework.WithFeature(framework.ValidFeatures.Add("OOMScoreAdj"))

View File

@@ -27,7 +27,6 @@ import (
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/labels"
clientset "k8s.io/client-go/kubernetes"
"k8s.io/kubernetes/test/e2e/feature"
"k8s.io/kubernetes/test/e2e/framework"
e2enode "k8s.io/kubernetes/test/e2e/framework/node"
e2epod "k8s.io/kubernetes/test/e2e/framework/pod"
@@ -43,7 +42,6 @@ import (
/*
This test assumes the following:
- The infra is GCP.
- NodeOutOfServiceVolumeDetach feature is enabled.
This test performs the following:
- Deploys a gce-pd csi driver
@@ -58,7 +56,7 @@ This test performs the following:
- Removes the `out-of-service` taint from the node.
*/
var _ = utils.SIGDescribe(feature.NodeOutOfServiceVolumeDetach, framework.WithDisruptive(), "[LinuxOnly] NonGracefulNodeShutdown", func() {
var _ = utils.SIGDescribe(framework.WithDisruptive(), "[LinuxOnly] NonGracefulNodeShutdown", func() {
var (
c clientset.Interface
ns string