From 55e3b35071298b56e1ae3f3a4b33ac66535390a5 Mon Sep 17 00:00:00 2001 From: Yash Thakkar Date: Wed, 23 Oct 2024 21:50:43 +0000 Subject: [PATCH] increasing timeout for few integration test --- test/framework/utils/poll.go | 2 +- test/integration/scale/pod_scale_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/framework/utils/poll.go b/test/framework/utils/poll.go index 285d1207..ec62f251 100644 --- a/test/framework/utils/poll.go +++ b/test/framework/utils/poll.go @@ -22,7 +22,7 @@ const ( PollTimeout = 30 * time.Second // ResourceCreationTimeout is the number of seconds till the controller waits // for the resource creation to complete - ResourceCreationTimeout = 120 * time.Second + ResourceCreationTimeout = 180 * time.Second // Windows Container Images are much larger in size and pulling them the first // time takes much longer, so have higher timeout for Windows Pod to be Ready WindowsPodsCreationTimeout = 240 * time.Second diff --git a/test/integration/scale/pod_scale_test.go b/test/integration/scale/pod_scale_test.go index 0c0fd1e4..aff3a4e9 100644 --- a/test/integration/scale/pod_scale_test.go +++ b/test/integration/scale/pod_scale_test.go @@ -81,7 +81,7 @@ var _ = Describe("Security group per pod scale test", func() { duration := time.Since(start) verify.VerifyNetworkingOfAllPodUsingENI(namespace, sgpLabelKey, sgpLabelValue, securityGroups) - Expect(duration.Minutes()).To(BeNumerically("<", 5.0)) + Expect(duration.Minutes()).To(BeNumerically("<", 5.5)) }) }) })