From: Thanh Ha Date: Wed, 25 Oct 2017 14:18:30 +0000 (-0400) Subject: Bump stack timeout to 15 minutes X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=72703eb8650fc7cbb38b7fd5fba10e3fb9785e73;p=releng%2Fbuilder.git Bump stack timeout to 15 minutes Also lower stack retries to 2. This ensures that the overall timeout of the job does not increase too. This is an attempt to workaround RS potentially taking too long to spin up servers as a reason the nodes are not coming online. Let us see if a 15 minute timeout improves the situation any. Change-Id: I2ed403aab37233b2e69022daf7e0f58dff8fc3c9 Signed-off-by: Thanh Ha --- diff --git a/jjb/opendaylight-infra-stack.sh b/jjb/opendaylight-infra-stack.sh index 54f65e137c..edb3e40c9e 100644 --- a/jjb/opendaylight-infra-stack.sh +++ b/jjb/opendaylight-infra-stack.sh @@ -22,8 +22,8 @@ cd /builder/openstack-hot || exit 1 JOB_SUM=$(echo "$JOB_NAME" | sum | awk '{{ print $1 }}') VM_NAME="$JOB_SUM-$BUILD_NUMBER" -OS_TIMEOUT=10 # Minutes to wait for OpenStack VM to come online -STACK_RETRIES=3 # Number of times to retry creating a stack before fully giving up +OS_TIMEOUT=15 # Minutes to wait for OpenStack VM to come online +STACK_RETRIES=2 # Number of times to retry creating a stack before fully giving up STACK_SUCCESSFUL=false # seq X refers to waiting for X minutes for OpenStack to return # a status that is not CREATE_IN_PROGRESS before giving up.