mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #130860 from carlory/remove-storage-feature-labels
e2e tests: remove unneeded storage feature label
This commit is contained in:
commit
6396fa0f77
@ -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"))
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user