From ba2aa3db069cc2af0476ca8b5fa749816daaa06b Mon Sep 17 00:00:00 2001 From: Jeremy Harisch <48282931+jeremyharisch@users.noreply.github.com> Date: Mon, 13 Nov 2023 15:01:06 +0100 Subject: [PATCH] Increase retry count for kustomize applying (#1838) --- internal/deploy/apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/deploy/apply.go b/internal/deploy/apply.go index 4aed2085d..496454e5c 100644 --- a/internal/deploy/apply.go +++ b/internal/deploy/apply.go @@ -11,7 +11,7 @@ import ( ) const ( - defaultRetries = 5 + defaultRetries = 10 defaultInitialBackoff = 10 * time.Second )