Bump timeouts for slow arm Drone runners

Signed-off-by: Derek Nola <derek.nola@suse.com>
pull/11737/head
Derek Nola 2025-02-07 13:06:02 -08:00
parent 090f738182
commit e575620487
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ var _ = Describe("LazyPull Tests", Ordered, func() {
Expect(config.ProvisionServers(1)).To(Succeed())
Eventually(func() error {
return tests.CheckDeployments([]string{"coredns", "local-path-provisioner", "metrics-server", "traefik"}, config.KubeconfigFile)
}, "60s", "5s").Should(Succeed())
}, "90s", "5s").Should(Succeed())
Eventually(func() error {
return tests.NodesReady(config.KubeconfigFile, config.GetNodeNames())
}, "40s", "5s").Should(Succeed())

View File

@ -109,7 +109,7 @@ var _ = Describe("Skew Tests", Ordered, func() {
Expect(config.ProvisionServers(3)).To(Succeed())
Eventually(func() error {
return tests.CheckDeployments([]string{"coredns", "local-path-provisioner", "metrics-server", "traefik"}, config.KubeconfigFile)
}, "60s", "5s").Should(Succeed())
}, "90s", "5s").Should(Succeed())
Eventually(func(g Gomega) {
g.Expect(tests.ParseNodes(config.KubeconfigFile)).To(HaveLen(3))
g.Expect(tests.NodesReady(config.KubeconfigFile, config.GetNodeNames())).To(Succeed())