From: Luis Gomez Date: Wed, 17 May 2017 17:08:06 +0000 (+0000) Subject: Merge "Move GBP openstack branch to newton" X-Git-Tag: release/carbon~31 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=94db99ece38141853c5392ad3f40edee7550c30d;hp=73d9525207a165c427408d0d40e7f6dc57273af2;p=releng%2Fbuilder.git Merge "Move GBP openstack branch to newton" --- diff --git a/jjb/netvirt/netvirt-csit-hwvtep-openstack.yaml b/jjb/netvirt/netvirt-csit-hwvtep-openstack.yaml index 99c83f650..a5d646037 100644 --- a/jjb/netvirt/netvirt-csit-hwvtep-openstack.yaml +++ b/jjb/netvirt/netvirt-csit-hwvtep-openstack.yaml @@ -57,7 +57,7 @@ tools_system_count: 2 - tools_system_image: 'Ubuntu 16.04 - mininet-ovs-25 - 20170406-0546' + tools_system_image: 'Ubuntu 16.04 - mininet-ovs-25 - 20170516-0740' enable-networking-l2gw: 'yes' diff --git a/jjb/opendaylight-infra-cleanup-stale-stacks.sh b/jjb/opendaylight-infra-cleanup-stale-stacks.sh index 2d7c928b9..d99938b34 100644 --- a/jjb/opendaylight-infra-cleanup-stale-stacks.sh +++ b/jjb/opendaylight-infra-cleanup-stale-stacks.sh @@ -39,21 +39,36 @@ for STACK_NAME in "${OS_STACKS[@]}"; do if [[ "${ACTIVE_BUILDS[@]}" =~ $STACK_NAME ]]; then # No need to delete stacks if there exists an active build for them continue - elif [[ "$STACK_STATUS" =~ DELETE_FAILED ]]; then - echo "Stack delete failed, trying to stack abandon now." - # stack abandon does not work on RS, therefore requires acquiring a token - # and using http delete method to abondon DELETE_FAILED stacks - # Todo: remove the change once RS fixes the issue upstream - # openstack stack abandon "$STACK_NAME" - STACK_ID=$(openstack stack show -f json -c "id" "$STACK_NAME" | jq -r '."id"') - TOKEN=$(openstack token issue -f json -c id | jq -r '.id') - curl -si -X DELETE -H "Content-Type: application/json" -H "Accept: application/json"\ - -H "x-auth-token: $TOKEN"\ - "https://dfw.orchestration.api.rackspacecloud.com/v1/904885/stacks/$STACK_NAME/$STACK_ID/abandon" - STACK_SHOW=$(openstack stack show "$STACK_NAME") - echo "$STACK_SHOW" else - echo "Deleting orphaned stack: $STACK_NAME" - openstack stack delete --yes "$STACK_NAME" + OS_STATUS=$(openstack stack show -f json -c stack_status "$stack" | jq -r '.stack_status') + case "$OS_STATUS" in + DELETE_IN_PROGRESS) + echo "skipping delete, $stack is already DELETE in progress." + continue + ;; + DELETE_FAILED) + echo "Stack delete failed, trying to stack abandon now." + # stack abandon does not work on RS, therefore requires acquiring a token + # and using http delete method to abondon DELETE_FAILED stacks + # Todo: remove the change once RS fixes the issue upstream + # openstack stack abandon "$STACK_NAME" + STACK_ID=$(openstack stack show -f json -c "id" "$STACK_NAME" | jq -r '."id"') + TOKEN=$(openstack token issue -f json -c id | jq -r '.id') + curl -si -X DELETE -H "Content-Type: application/json" -H "Accept: application/json"\ + -H "x-auth-token: $TOKEN"\ + "https://dfw.orchestration.api.rackspacecloud.com/v1/904885/stacks/$STACK_NAME/$STACK_ID/abandon" + STACK_SHOW=$(openstack stack show "$STACK_NAME") + echo "$STACK_SHOW" + continue + ;; + CREATE_COMPLETE|CREATE_FAILED) + echo "Deleting orphaned stack: $stack" + openstack stack delete --yes "$stack" + continue + ;; + *) + continue + ;; + esac fi done