From 07726215dc3734c488cfcc40138740cb0b684d96 Mon Sep 17 00:00:00 2001 From: Michal Nasiadka Date: Tue, 10 Jun 2025 17:18:10 +0200 Subject: [PATCH] CI: Bump instance creation timeout to 5 minutes In many cases we've seen that current 120 seconds is not enough Signed-Off-By: Michal Nasiadka Change-Id: Iaf863f4e0aaeefd1270030e1b456aa5b258fe5a7 --- tests/test-core-openstack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-core-openstack.sh b/tests/test-core-openstack.sh index e191201c69..9a4f0fd502 100755 --- a/tests/test-core-openstack.sh +++ b/tests/test-core-openstack.sh @@ -262,7 +262,7 @@ function test_ssh { local instance_name=$1 local fip_addr=$2 local attempts - attempts=12 + attempts=30 for i in $(seq 1 ${attempts}); do if ping -c1 -W1 ${fip_addr} && ssh -v -o BatchMode=yes -o StrictHostKeyChecking=no cirros@${fip_addr} hostname; then break