Fix OS_CLOUD export for image validation
[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 < <(openstack --os-cloud "$os_cloud" port list -f value -c ID -c status | grep -E DOWN | awk '{print $1}')
19
20 if [ ${#os_ports[@]} -eq 0 ]; then
21     echo "No orphaned ports found."
22 else
23     for port in "${os_ports[@]}"; do
24         echo "Removing orphaned port $port"
25         openstack --os-cloud "$os_cloud" port delete "$port"
26     done
27 fi