From 221c673f31a553b5b889e7ae262c77143b24d65b Mon Sep 17 00:00:00 2001 From: Jing Xu Date: Wed, 20 Mar 2019 12:07:50 -0700 Subject: [PATCH] Skip GlusterDynamicProvisioner test in GKE The GlusterDynamicProvisioner test will not work on GKE because master node is in a different project and cannot talk to the pod running on node which is used for gluster provisioner. So add the code to skip the test on GKE --- test/e2e/storage/volume_provisioning.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/storage/volume_provisioning.go b/test/e2e/storage/volume_provisioning.go index 291fb45497b..c6f0f7780cd 100644 --- a/test/e2e/storage/volume_provisioning.go +++ b/test/e2e/storage/volume_provisioning.go @@ -818,6 +818,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() { framework.KubeDescribe("GlusterDynamicProvisioner", func() { It("should create and delete persistent volumes [fast]", func() { + framework.SkipIfProviderIs("gke") By("creating a Gluster DP server Pod") pod := startGlusterDpServerPod(c, ns) serverUrl := "http://" + pod.Status.PodIP + ":8081"