From fe3724afb6633cc9eefe73676e5a31bf8121d474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Mon, 27 Sep 2021 12:12:46 +0200 Subject: [PATCH] ci: wait longer for csi to be available MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sometimes the CI needs more time... Closes: https://github.com/rook/rook/issues/8825 Signed-off-by: Sébastien Han (cherry picked from commit 85216a266cca4e0acb7b7309d00b1e7bcd022b47) --- tests/scripts/validate_cluster.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/validate_cluster.sh b/tests/scripts/validate_cluster.sh index 20569b6dbbb5..f22cac35938c 100755 --- a/tests/scripts/validate_cluster.sh +++ b/tests/scripts/validate_cluster.sh @@ -89,7 +89,7 @@ function test_demo_pool { function test_csi { # shellcheck disable=SC2046 - timeout 90 sh -c 'until [ $(kubectl -n rook-ceph get pods --field-selector=status.phase=Running|grep -c ^csi-) -eq 4 ]; do sleep 1; done' + timeout 180 sh -c 'until [ $(kubectl -n rook-ceph get pods --field-selector=status.phase=Running|grep -c ^csi-) -eq 4 ]; do sleep 1; done' if [ $? -eq 0 ]; then return 0 fi