080b5907c50a839c6953b5237f35430d039538e0
[releng/global-jjb.git] / shell / openstack-cleanup-orphaned-ports.sh
1 #!/bin/bash -l
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2019 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 ports
12 echo "---> Orphaned ports"
13
14 os_cloud="${OS_CLOUD:-vex}"
15
16 set -eux -o pipefail
17
18 mapfile -t os_ports_ts < <(openstack --os-cloud "$os_cloud" port list \
19         -f value \
20         -c ID \
21         -c status \
22         -c created_at \
23         | grep -E DOWN \
24         | awk -F' ' '{print $1 " " $3}')
25
26 if [ ${#os_ports_ts[@]} -eq 0 ]; then
27     echo "No orphaned ports found."
28 else
29     cutoff=$(date -d "30 minutes ago"  +%s)
30     for port_ts in "${os_ports_ts[@]}"; do
31         created_at_isots="${port_ts#* }"
32         port_uuid="${port_ts% *}"
33         echo "checking port uuid: ${port_uuid} with TS: ${created_at_isots}"
34         created_at_uxts=$(date -d "${created_at_isots}" +"%s")
35         # Clean up ports where created_at > 30 minutes
36         if [[ "$created_at_uxts" -gt "$cutoff" ]]; then
37             echo "Removing orphaned port $port_uuid created_at ts > 30 minutes."
38             openstack --os-cloud "$os_cloud" port delete "$port_uuid"
39         fi
40     done
41 fi