diff --git a/test/e2e/feature/feature.go b/test/e2e/feature/feature.go index 831dd9adc4d..d9a26fb5542 100644 --- a/test/e2e/feature/feature.go +++ b/test/e2e/feature/feature.go @@ -541,19 +541,6 @@ var ( // TODO: document the feature (owning SIG, when to use this feature for a test) VolumeSourceXFS = framework.WithFeature(framework.ValidFeatures.Add("VolumeSourceXFS")) - // Ownerd by SIG Storage - // kep: https://kep.k8s.io/1432 - // test-infra jobs: - // - pull-kubernetes-e2e-storage-kind-alpha-features (need manual trigger) - // - ci-kubernetes-e2e-storage-kind-alpha-features - // When this label is added to a test, it means that the cluster must be created - // with the feature-gate "CSIVolumeHealth=true". - // - // Once the feature is stable, this label should be removed and these tests will - // be run by default on any cluster. The test-infra job also should be updated to - // not focus on this feature anymore. - CSIVolumeHealth = framework.WithFeature(framework.ValidFeatures.Add("CSIVolumeHealth")) - // TODO: document the feature (owning SIG, when to use this feature for a test) Vsphere = framework.WithFeature(framework.ValidFeatures.Add("vsphere")) diff --git a/test/e2e/storage/csimock/csi_node_volume_health.go b/test/e2e/storage/csimock/csi_node_volume_health.go index c98433aaca2..3e6505ba499 100644 --- a/test/e2e/storage/csimock/csi_node_volume_health.go +++ b/test/e2e/storage/csimock/csi_node_volume_health.go @@ -29,7 +29,6 @@ import ( "k8s.io/apimachinery/pkg/util/wait" "k8s.io/kubernetes/pkg/features" kubeletmetrics "k8s.io/kubernetes/pkg/kubelet/metrics" - "k8s.io/kubernetes/test/e2e/feature" "k8s.io/kubernetes/test/e2e/framework" e2emetrics "k8s.io/kubernetes/test/e2e/framework/metrics" e2epod "k8s.io/kubernetes/test/e2e/framework/pod" @@ -41,7 +40,7 @@ import ( "github.com/onsi/ginkgo/v2" ) -var _ = utils.SIGDescribe("CSI Mock Node Volume Health", feature.CSIVolumeHealth, framework.WithFeatureGate(features.CSIVolumeHealth), func() { +var _ = utils.SIGDescribe("CSI Mock Node Volume Health", framework.WithFeatureGate(features.CSIVolumeHealth), func() { f := framework.NewDefaultFramework("csi-mock-node-volume-health") f.NamespacePodSecurityLevel = admissionapi.LevelPrivileged m := newMockDriverSetup(f)