From 7a96d0a58991a74fe60364adefb5c42d7d87da7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 7 Sep 2023 12:26:47 +0200 Subject: [PATCH] ci: k8s: Use the proper command for sleep MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `wait` waits for a job to complete, not a number of seconds. Not sure how I got that wrong in the first place, but it's what it's. Fixes: #6542 Signed-off-by: Fabiano FidĂȘncio (cherry picked from commit 028a97e0d5552153a4ae1469e4cf9715b1f1db25) --- tests/integration/kubernetes/gha-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/kubernetes/gha-run.sh b/tests/integration/kubernetes/gha-run.sh index 2df72ac23f..6d3c33efe6 100755 --- a/tests/integration/kubernetes/gha-run.sh +++ b/tests/integration/kubernetes/gha-run.sh @@ -138,7 +138,7 @@ function deploy_k3s() { curl -sfL https://get.k3s.io | sh - # This is an arbitrary value that came up from local tests - wait 240s + sleep 240s } function deploy_k8s() {