Skip to content

Commit

Permalink
increased timeout from 5 to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Himangini committed Sep 10, 2021
1 parent 665ac3f commit 875237e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/tests/fargate/fargate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ var _ = Describe("(Integration) Fargate", func() {

By("scheduling pods matching the default profile onto Fargate")
d := kubeTest.CreateDeploymentFromFile("default", "../../data/podinfo.yaml")
kubeTest.WaitForDeploymentReady(d, 5*time.Minute)
kubeTest.WaitForDeploymentReady(d, 10*time.Minute)

pods := kubeTest.ListPodsFromDeployment(d)
Expect(len(pods.Items)).To(Equal(2))
Expand Down Expand Up @@ -114,7 +114,7 @@ var _ = Describe("(Integration) Fargate", func() {
d.Spec.Template.Labels["run-on"] = "fargate"

kubeTest.CreateDeployment(kubeTest.Namespace, d)
kubeTest.WaitForDeploymentReady(d, 5*time.Minute)
kubeTest.WaitForDeploymentReady(d, 10*time.Minute)
pods := kubeTest.ListPodsFromDeployment(d)
Expect(len(pods.Items)).To(Equal(2))
for _, pod := range pods.Items {
Expand Down

0 comments on commit 875237e

Please sign in to comment.