From 45aec048dbe11f845438595100c16c9eb4a2f445 Mon Sep 17 00:00:00 2001 From: Aniket Kulkarni Date: Thu, 25 Oct 2018 14:29:01 -0400 Subject: [PATCH] Incorporating review comments --- .../{flexvolume_resize.go => flexvolume_online_resize.go} | 4 ---- 1 file changed, 4 deletions(-) rename test/e2e/storage/{flexvolume_resize.go => flexvolume_online_resize.go} (96%) diff --git a/test/e2e/storage/flexvolume_resize.go b/test/e2e/storage/flexvolume_online_resize.go similarity index 96% rename from test/e2e/storage/flexvolume_resize.go rename to test/e2e/storage/flexvolume_online_resize.go index d1611d00890..4157f164632 100644 --- a/test/e2e/storage/flexvolume_resize.go +++ b/test/e2e/storage/flexvolume_online_resize.go @@ -25,7 +25,6 @@ import ( "k8s.io/apimachinery/pkg/api/resource" utilerrors "k8s.io/apimachinery/pkg/util/errors" clientset "k8s.io/client-go/kubernetes" - "k8s.io/kubernetes/pkg/features" "k8s.io/kubernetes/test/e2e/framework" "k8s.io/kubernetes/test/e2e/storage/utils" "path" @@ -60,9 +59,6 @@ var _ = utils.SIGDescribe("Mounted flexvolume volume expand [Slow] [Feature:Expa f := framework.NewDefaultFramework("mounted-flexvolume-expand") BeforeEach(func() { framework.SkipUnlessProviderIs("aws", "gce", "local") - if enabled, ok := framework.TestContext.FeatureGates["ExpandInUsePersistentVolumes"]; !ok || !enabled { - framework.Skipf("Only supported when %v feature is enabled", features.ExpandInUsePersistentVolumes) - } c = f.ClientSet ns = f.Namespace.Name framework.ExpectNoError(framework.WaitForAllNodesSchedulable(c, framework.TestContext.NodeSchedulableTimeout))