X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fopendaylight-infra-cleanup-stale-stacks.sh;h=5d4cdffd50079d763c685969d6f304ca28d8e40d;hb=2e45935078b5a2964964ff9ea2ca9dd038ec33ea;hp=db2390bdf1c42ecdb717479f81f90b334722900e;hpb=41cd0a2b12f23dd333e61a1c9c216577f4da811d;p=releng%2Fbuilder.git diff --git a/jjb/opendaylight-infra-cleanup-stale-stacks.sh b/jjb/opendaylight-infra-cleanup-stale-stacks.sh index db2390bdf..5d4cdffd5 100644 --- a/jjb/opendaylight-infra-cleanup-stale-stacks.sh +++ b/jjb/opendaylight-infra-cleanup-stale-stacks.sh @@ -1,7 +1,7 @@ #!/bin/bash -virtualenv "$WORKSPACE/.venv" -# shellcheck disable=SC1090 -source "$WORKSPACE/.venv/bin/activate" +virtualenv "/tmp/v/openstack" +# shellcheck source=/tmp/v/openstack/bin/activate disable=SC1091 +source "/tmp/v/openstack/bin/activate" pip install --upgrade pip pip install --upgrade python-openstackclient python-heatclient pip freeze @@ -22,24 +22,52 @@ OS_STACKS=($(openstack stack list \ ACTIVE_BUILDS=() for silo in releng sandbox; do JENKINS_URL="https://jenkins.opendaylight.org/$silo//computer/api/json?tree=computer[executors[currentExecutable[url]],oneOffExecutors[currentExecutable[url]]]&xpath=//url&wrapper=builds" - wget --no-verbose -O "${silo}_builds.json" "$JENKINS_URL" + wget -nv -O "${silo}_builds.json" "$JENKINS_URL" sleep 1 # Need to sleep for 1 second otherwise next line causes script to stall ACTIVE_BUILDS=(${ACTIVE_BUILDS[@]} $( \ jq -r '.computer[].executors[].currentExecutable.url' "${silo}_builds.json" \ - | grep -v null | awk -F'/' '{print $6 "-" $7}')) + | grep -v null | awk -F'/' '{print $4 "-" $6 "-" $7}')) done ########################## ## DELETE UNUSED STACKS ## ########################## -# Search for stacks taht are not in use by either releng or sandbox silos and +# Search for stacks that are not in use by either releng or sandbox silos and # delete them. -for stack in "${OS_STACKS[@]}"; do - if [[ "${ACTIVE_BUILDS[@]}" =~ $stack ]]; then +for STACK_NAME in "${OS_STACKS[@]}"; do + STACK_STATUS=$(openstack stack show -f json -c "stack_status" "$STACK_NAME" | jq -r '."stack_status"') + if [[ "${ACTIVE_BUILDS[*]}" =~ $STACK_NAME ]]; then # No need to delete stacks if there exists an active build for them continue else - echo "Deleting orphaned stack: $stack" - openstack stack delete --yes "$stack" + case "$STACK_STATUS" in + DELETE_IN_PROGRESS) + echo "skipping delete, $STACK_NAME 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_NAME" + openstack stack delete --yes "$STACK_NAME" + continue + ;; + *) + continue + ;; + esac fi done