From e2fdc077f8f21a25a04fbf6f566d0ae168a38342 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Wed, 21 Oct 2020 09:54:01 -0700 Subject: [PATCH] Use 6 minutes, to use the philosophy of doubling timeouts you hit --- pkg/addons/addons.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/addons/addons.go b/pkg/addons/addons.go index 82ff15bb7e..b86184ae42 100644 --- a/pkg/addons/addons.go +++ b/pkg/addons/addons.go @@ -354,7 +354,7 @@ func verifyAddonStatusInternal(cc *config.ClusterConfig, name string, val string } // This timeout includes image pull time, which can take a few minutes. 3 is not enough. - err = kapi.WaitForPods(client, ns, label, time.Minute*5) + err = kapi.WaitForPods(client, ns, label, time.Minute*6) if err != nil { return errors.Wrapf(err, "waiting for %s pods", label) }