From 05fe7094d57496789ec41bad11b4ef714f3e32e5 Mon Sep 17 00:00:00 2001 From: Yecheng Fu Date: Wed, 6 Mar 2019 10:46:17 +0800 Subject: [PATCH] Disable "should set different fsGroup for second pod if first pod is deleted" test temporarily --- test/e2e/storage/persistent_volumes-local.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/storage/persistent_volumes-local.go b/test/e2e/storage/persistent_volumes-local.go index 17f0cc10545..8b8ccdca278 100644 --- a/test/e2e/storage/persistent_volumes-local.go +++ b/test/e2e/storage/persistent_volumes-local.go @@ -294,6 +294,7 @@ var _ = utils.SIGDescribe("PersistentVolumes-local ", func() { }) It("should set different fsGroup for second pod if first pod is deleted", func() { + framework.Skipf("Disabled temporarily, reopen after #73168 is fixed") fsGroup1, fsGroup2 := int64(1234), int64(4321) By("Create first pod and check fsGroup is set") pod1 := createPodWithFsGroupTest(config, testVol, fsGroup1, fsGroup1)