diff --git a/test/e2e/workflow/deployment_test.go b/test/e2e/workflow/deployment_test.go index 9dda94803..d4d9eb761 100644 --- a/test/e2e/workflow/deployment_test.go +++ b/test/e2e/workflow/deployment_test.go @@ -31,7 +31,7 @@ var _ = Describe("NetworkAddonsConfig", func() { testConfigCreate(gvk, configSpec, components) // Make sure that deployed components remain up and running - CheckConfigCondition(gvk, ConditionAvailable, ConditionTrue, CheckImmediately, time.Minute) + CheckConfigCondition(gvk, ConditionAvailable, ConditionTrue, 10*time.Second, time.Minute) }, Entry( "Empty config", @@ -485,7 +485,7 @@ func checkConfigChange(gvk schema.GroupVersionKind, components []Component, whil CheckConfigCondition(gvk, ConditionProgressing, ConditionTrue, 5*time.Minute, CheckDoNotRepeat) // Wait until Available condition is reported. It may take a few minutes the first time // we are pulling component images to the Node - CheckConfigCondition(gvk, ConditionAvailable, ConditionTrue, 15*time.Minute, CheckDoNotRepeat) + CheckConfigCondition(gvk, ConditionAvailable, ConditionTrue, 15*time.Minute, 10*time.Second) CheckConfigCondition(gvk, ConditionProgressing, ConditionFalse, CheckImmediately, CheckDoNotRepeat) // Check that all requested components have been deployed