From f4f95be4e7663cb3ab81270a59dd06fb79e947bc Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Fri, 28 Apr 2017 08:19:29 -0400 Subject: [PATCH] Mark PersistentVolumes as [Feature:Volumes] Just so that we know that we need a cloud provider that supports volumes to run this test. This is similar to the change in 63bc42c87241bcfc2ff4ef071aaca5dac1be4049. Ran into this when i was trying to run e2e tests with local-up-cluster locally and figured out this test will not work since we don't support local storage persistent volumes. --- test/e2e/storage/persistent_volumes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/storage/persistent_volumes.go b/test/e2e/storage/persistent_volumes.go index 6f542e90fb5..16c165d0c23 100644 --- a/test/e2e/storage/persistent_volumes.go +++ b/test/e2e/storage/persistent_volumes.go @@ -97,7 +97,7 @@ func initNFSserverPod(c clientset.Interface, ns string) *v1.Pod { }) } -var _ = framework.KubeDescribe("PersistentVolumes [Volume]", func() { +var _ = framework.KubeDescribe("PersistentVolumes [Feature:Volumes]", func() { // global vars for the Context()s and It()'s below f := framework.NewDefaultFramework("pv")