Skip to content

Commit 8c9452f

Browse files
committed
e2e tests: remove unneeded storage feature label
1 parent be32ca6 commit 8c9452f

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

test/e2e/feature/feature.go

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -548,19 +548,6 @@ var (
548548
// TODO: document the feature (owning SIG, when to use this feature for a test)
549549
VolumeSourceXFS = framework.WithFeature(framework.ValidFeatures.Add("VolumeSourceXFS"))
550550

551-
// Ownerd by SIG Storage
552-
// kep: https://kep.k8s.io/1432
553-
// test-infra jobs:
554-
// - pull-kubernetes-e2e-storage-kind-alpha-features (need manual trigger)
555-
// - ci-kubernetes-e2e-storage-kind-alpha-features
556-
// When this label is added to a test, it means that the cluster must be created
557-
// with the feature-gate "CSIVolumeHealth=true".
558-
//
559-
// Once the feature is stable, this label should be removed and these tests will
560-
// be run by default on any cluster. The test-infra job also should be updated to
561-
// not focus on this feature anymore.
562-
CSIVolumeHealth = framework.WithFeature(framework.ValidFeatures.Add("CSIVolumeHealth"))
563-
564551
// TODO: document the feature (owning SIG, when to use this feature for a test)
565552
Vsphere = framework.WithFeature(framework.ValidFeatures.Add("vsphere"))
566553

test/e2e/storage/csimock/csi_node_volume_health.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ import (
2929
"k8s.io/apimachinery/pkg/util/wait"
3030
"k8s.io/kubernetes/pkg/features"
3131
kubeletmetrics "k8s.io/kubernetes/pkg/kubelet/metrics"
32-
"k8s.io/kubernetes/test/e2e/feature"
3332
"k8s.io/kubernetes/test/e2e/framework"
3433
e2emetrics "k8s.io/kubernetes/test/e2e/framework/metrics"
3534
e2epod "k8s.io/kubernetes/test/e2e/framework/pod"
@@ -41,7 +40,7 @@ import (
4140
"github.com/onsi/ginkgo/v2"
4241
)
4342

44-
var _ = utils.SIGDescribe("CSI Mock Node Volume Health", feature.CSIVolumeHealth, framework.WithFeatureGate(features.CSIVolumeHealth), func() {
43+
var _ = utils.SIGDescribe("CSI Mock Node Volume Health", framework.WithFeatureGate(features.CSIVolumeHealth), func() {
4544
f := framework.NewDefaultFramework("csi-mock-node-volume-health")
4645
f.NamespacePodSecurityLevel = admissionapi.LevelPrivileged
4746
m := newMockDriverSetup(f)

0 commit comments

Comments
 (0)