From 199b49941fcf4a319c3977ee304985c8bbf403af Mon Sep 17 00:00:00 2001 From: Harshal Patil Date: Fri, 6 Nov 2020 15:54:13 +0530 Subject: [PATCH] Increase the timeout to allow summary test pod to start Signed-off-by: Harshal Patil --- test/e2e_node/summary_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/summary_test.go b/test/e2e_node/summary_test.go index 7bb6e97e8df..9b6b14100b2 100644 --- a/test/e2e_node/summary_test.go +++ b/test/e2e_node/summary_test.go @@ -338,7 +338,7 @@ var _ = framework.KubeDescribe("Summary API [NodeConformance]", func() { ginkgo.By("Validating /stats/summary") // Give pods a minute to actually start up. - gomega.Eventually(getNodeSummary, 1*time.Minute, 15*time.Second).Should(matchExpectations) + gomega.Eventually(getNodeSummary, 90*time.Second, 15*time.Second).Should(matchExpectations) // Then the summary should match the expectations a few more times. gomega.Consistently(getNodeSummary, 30*time.Second, 15*time.Second).Should(matchExpectations) })