From 301ac9439d25b29488a7caf785e9471b3134f2e4 Mon Sep 17 00:00:00 2001 From: Pablo Acevedo Montserrat Date: Thu, 9 May 2024 12:25:07 +0200 Subject: [PATCH] USHIFT-3141: Increase vm boot timeout to 30m in scenarios As the number of VMs increases, so does the time they need to boot in CI. We have had a few timeouts lately with 15m, so we increase it to 30m to avoid having flakes. --- test/bin/scenario.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bin/scenario.sh b/test/bin/scenario.sh index 574f0ddc1c..bb62790be8 100755 --- a/test/bin/scenario.sh +++ b/test/bin/scenario.sh @@ -20,7 +20,7 @@ WEB_SERVER_URL="http://${VM_BRIDGE_IP}:${WEB_SERVER_PORT}" PULL_SECRET="${PULL_SECRET:-${HOME}/.pull-secret.json}" PULL_SECRET_CONTENT="$(jq -c . "${PULL_SECRET}")" PUBLIC_IP=${PUBLIC_IP:-""} # may be overridden in global settings file -VM_BOOT_TIMEOUT=900 +VM_BOOT_TIMEOUT=1800 ENABLE_REGISTRY_MIRROR=${ENABLE_REGISTRY_MIRROR:-false} SKIP_SOS=${SKIP_SOS:-false} # may be overridden in global settings file SKIP_GREENBOOT=${SKIP_GREENBOOT:-false} # may be overridden in scenario file