From ecc0c4e4b4730e01874feb324ff01b1ce6b15343 Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Wed, 16 Jan 2019 14:54:21 +0100 Subject: [PATCH] e2e/storage: enable concurrent writes for gcepd The driver should support multiple pods using the same volume on the same node. --- test/e2e/storage/drivers/csi.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/storage/drivers/csi.go b/test/e2e/storage/drivers/csi.go index c2b13313ecb..8bfbabf579f 100644 --- a/test/e2e/storage/drivers/csi.go +++ b/test/e2e/storage/drivers/csi.go @@ -297,6 +297,7 @@ func InitGcePDCSIDriver(config testsuites.TestConfig) testsuites.TestDriver { testsuites.CapPersistence: true, testsuites.CapFsGroup: true, testsuites.CapExec: true, + testsuites.CapMultiPODs: true, }, Config: config, @@ -409,6 +410,7 @@ func InitGcePDExternalCSIDriver(config testsuites.TestConfig) testsuites.TestDri testsuites.CapPersistence: true, testsuites.CapFsGroup: true, testsuites.CapExec: true, + testsuites.CapMultiPODs: true, }, Config: config,