Fix rtd merge job to handle new tag uploaded
[releng/global-jjb.git] / shell / openstack-cleanup-orphaned-servers.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 servers
12 echo "---> Orphaned servers"
13
14 os_cloud="${OS_CLOUD:-vex}"
15 jenkins_urls="${JENKINS_URLS:-}"
16
17 minion_in_jenkins() {
18     # Usage: minion_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     MINION="${1}"
22
23     minions=()
24     for jenkins in "${@:2}"; do
25         JENKINS_URL="$jenkins/computer/api/json?tree=computer[displayName]"
26         resp=$(curl -s -w "\\n\\n%{http_code}" --globoff -H "Content-Type:application/json" "$JENKINS_URL")
27         json_data=$(echo "$resp" | head -n1)
28         status=$(echo "$resp" | awk 'END {print $NF}')
29
30         if [ "$status" != 200 ]; then
31             >&2 echo "ERROR: Failed to fetch data from $JENKINS_URL with status code $status"
32             >&2 echo "$resp"
33             exit 1
34         fi
35
36         # We purposely want to wordsplit here to combine the arrays
37         # shellcheck disable=SC2206,SC2207
38         minions=(${minions[@]} $(echo "$json_data" | \
39             jq -r '.computer[].displayName' | grep -v master)
40         )
41     done
42
43     if [[ "${minions[*]}" =~ $MINION ]]; then
44         return 0
45     fi
46
47     return 1
48 }
49
50 ##########################
51 ## FETCH ACTIVE MINIONS ##
52 ##########################
53 # Fetch server list before fetching active minions to minimize race condition
54 # where we might be trying to delete servers while jobs are trying to start
55
56 mapfile -t OS_SERVERS < <(openstack --os-cloud "$os_cloud" server list -f value -c "Name" | grep -E 'prd|snd')
57
58 echo "-----> Active servers"
59 for server in "${OS_SERVERS[@]}"; do
60     echo "$server"
61 done
62
63
64 #############################
65 ## DELETE ORPHANED SERVERS ##
66 #############################
67 echo "-----> Delete orphaned servers"
68
69 # Search for servers not in use by any active Jenkins systems and remove them.
70 for server in "${OS_SERVERS[@]}"; do
71     # jenkins_urls intentially needs globbing to be passed a separate params.
72     # needs to be globbed.
73     # shellcheck disable=SC2153,SC2086
74     if minion_in_jenkins "$server" $jenkins_urls; then
75         # No need to delete server if it is still attached to Jenkins
76         continue
77     else
78         echo "Deleting orphaned server: $server"
79         lftools openstack --os-cloud "$os_cloud" \
80             server remove --minutes 15 "$server"
81     fi
82 done