Merge pull request #96302 from harche/summary_test_fix

Increase the timeout to allow summary test pods to start
This commit is contained in:
Kubernetes Prow Robot 2020-11-06 11:29:25 -08:00 committed by GitHub
commit ba39cf58ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
})