diff --git a/test/integration/addons_test.go b/test/integration/addons_test.go index b8d4852104..8cf28730f1 100644 --- a/test/integration/addons_test.go +++ b/test/integration/addons_test.go @@ -65,7 +65,7 @@ func TestAddons(t *testing.T) { return &commonutil.RetriableError{Err: fmt.Errorf("Addon manager not found. Found pods: %v", pods)} } - if err := commonutil.RetryAfter(20, checkAddon, 5*time.Second); err != nil { + if err := commonutil.RetryAfter(25, checkAddon, 20*time.Second); err != nil { t.Fatalf("Addon Manager pod is unhealthy: %s", err) } } diff --git a/test/integration/persistence_test.go b/test/integration/persistence_test.go index 79fbd0b507..dd91a2b27d 100644 --- a/test/integration/persistence_test.go +++ b/test/integration/persistence_test.go @@ -76,7 +76,7 @@ func TestPersistence(t *testing.T) { // Make sure the dashboard is running before we stop the VM. // On slow networks it can take several minutes to pull the addon-manager then the dashboard image. - if err := commonutil.RetryAfter(30, checkDashboard, 6*time.Second); err != nil { + if err := commonutil.RetryAfter(25, checkDashboard, 20*time.Second); err != nil { t.Fatalf("Dashboard pod is not healthy: %s", err) }