From df3fe8639b03eb40520b6dd5e1ad0efbf176c984 Mon Sep 17 00:00:00 2001 From: Josh Wolf <josh@joshwolf.dev> Date: Fri, 5 Feb 2021 13:02:40 -0700 Subject: [PATCH] ci: ensure waits match flux rollback timeout --- scripts/deploy/02_wait_for_helmrealeases.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy/02_wait_for_helmrealeases.sh b/scripts/deploy/02_wait_for_helmrealeases.sh index d2492913ea..5117bf561a 100755 --- a/scripts/deploy/02_wait_for_helmrealeases.sh +++ b/scripts/deploy/02_wait_for_helmrealeases.sh @@ -31,7 +31,7 @@ function array_contains() { ## $1: package name function wait_on() { echo "Waiting on package $1" - kubectl wait --for=condition=Ready --timeout 500s helmrelease -n bigbang $1; + kubectl wait --for=condition=Ready --timeout 600s helmrelease -n bigbang $1; } for package in $ORDERED_HELMRELEASES; -- GitLab