Skip to content

Commit 6396fa0

Browse files
authored
Merge pull request kubernetes#130860 from carlory/remove-storage-feature-labels
e2e tests: remove unneeded storage feature label
2 parents 16ef87e + 8c9452f commit 6396fa0

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
@@ -541,19 +541,6 @@ var (
541541
// TODO: document the feature (owning SIG, when to use this feature for a test)
542542
VolumeSourceXFS = framework.WithFeature(framework.ValidFeatures.Add("VolumeSourceXFS"))
543543

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

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)