e4f457ae236e2fb2c8e3655a79966afbeced7c39
[releng/global-jjb.git] / shell / openstack-cleanup-orphaned-stacks.sh
1 #!/bin/bash -l
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017, 2018 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 # Scans OpenStack for orphaned stacks
12 echo "---> Orphaned stacks"
13
14 os_cloud="${OS_CLOUD:-vex}"
15 jenkins_urls="${JENKINS_URLS:-}"
16
17 stack_in_jenkins() {
18     # Usage: check_stack_in_jenkins STACK_NAME JENKINS_URL [JENKINS_URL...]
19     # Returns: 0 If stack is in Jenkins and 1 if stack is not in Jenkins.
20
21     STACK_NAME="${1}"
22
23     builds=()
24     for jenkins in "${@:2}"; do
25         PARAMS="tree=computer[executors[currentExecutable[url]],"
26         PARAMS=$PARAMS"oneOffExecutors[currentExecutable[url]]]"
27         PARAMS=$PARAMS"&xpath=//url&wrapper=builds"
28         JENKINS_URL="$jenkins/computer/api/json?$PARAMS"
29         resp=$(curl -s -w "\\n\\n%{http_code}" --globoff -H "Content-Type:application/json" "$JENKINS_URL")
30         json_data=$(echo "$resp" | head -n1)
31         status=$(echo "$resp" | awk 'END {print $NF}')
32
33         if [ "$status" != 200 ]; then
34             >&2 echo "ERROR: Failed to fetch data from $JENKINS_URL with status code $status"
35             >&2 echo "$resp"
36             exit 1
37         fi
38
39         if [[ "${jenkins}" == *"jenkins."*".org" ]] || [[ "${jenkins}" == *"jenkins."*".io" ]]; then
40             silo="production"
41         else
42             silo=$(echo "$jenkins" | sed 's/\/*$//' | awk -F'/' '{print $NF}')
43         fi
44         export silo
45         # We purposely want to wordsplit here to combine the arrays
46         # shellcheck disable=SC2206,SC2207
47         builds=(${builds[@]} $(echo "$json_data" | \
48             jq -r '.computer[].executors[].currentExecutable.url' \
49             | grep -v null | awk -F'/' '{print ENVIRON["silo"] "-" $6 "-" $7}')
50         )
51     done
52
53     if [[ "${builds[*]}" =~ $STACK_NAME ]]; then
54         return 0
55     fi
56
57     return 1
58 }
59
60 #########################
61 ## FETCH ACTIVE BUILDS ##
62 #########################
63 # Fetch stack list before fetching active builds to minimize race condition
64 # where we might be try to delete stacks while jobs are trying to start
65
66 mapfile -t OS_STACKS < <(openstack --os-cloud "$os_cloud" stack list \
67             -f value -c "Stack Name" -c "Stack Status" \
68             --property "stack_status=CREATE_COMPLETE" \
69             --property "stack_status=DELETE_FAILED" \
70             --property "stack_status=CREATE_FAILED" \
71             | awk '{print $1}')
72
73 echo "-----> Active stacks"
74 for stack in "${OS_STACKS[@]}"; do
75     echo "$stack"
76 done
77
78
79 ##########################
80 ## DELETE UNUSED STACKS ##
81 ##########################
82 echo "-----> Delete orphaned stacks"
83
84 # Search for stacks not in use by any active Jenkins systems and remove them.
85 for STACK_NAME in "${OS_STACKS[@]}"; do
86     # jenkins_urls intentially needs globbing to be passed a separate params.
87     # shellcheck disable=SC2153,SC2086
88     if stack_in_jenkins "$STACK_NAME" $jenkins_urls; then
89         # No need to delete stacks if there exists an active build for them
90         continue
91     else
92         echo "Deleting orphaned stack: $STACK_NAME"
93         lftools openstack --os-cloud "$os_cloud" stack delete --force "$STACK_NAME"
94     fi
95 done