From 7dd307dc8cce52c16d71f57d85896d0adbf485c4 Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Mon, 10 Aug 2020 09:41:21 -0400 Subject: [PATCH] e2e: CSI EBS test should expect 2 controllers (#8617) --- e2e/csi/csi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/csi/csi.go b/e2e/csi/csi.go index cc2af92fc65..dce49a76725 100644 --- a/e2e/csi/csi.go +++ b/e2e/csi/csi.go @@ -70,7 +70,7 @@ func (tc *CSIVolumesTest) TestEBSVolumeClaim(f *framework.F) { if err != nil { return false } - if plugin.ControllersHealthy != 1 || plugin.NodesHealthy < 2 { + if plugin.ControllersHealthy < 2 || plugin.NodesHealthy < 2 { return false } return true