Fix rtd merge job to handle new tag uploaded
[releng/global-jjb.git] / shell / openstack-cleanup-orphaned-volumes.sh
1 #!/bin/bash -l
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 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 volumes
12 echo "---> Orphaned volumes"
13
14 os_cloud="${OS_CLOUD:-vex}"
15
16 set -eux -o pipefail
17
18 mapfile -t os_volumes < <(openstack --os-cloud "$os_cloud" volume list -f value -c ID --status Available)
19
20 if [ ${#os_volumes[@]} -eq 0 ]; then
21     echo "No orphaned volumes found."
22 else
23     for volume in "${os_volumes[@]}"; do
24         echo "Removing volume $volume"
25         lftools openstack --os-cloud "$os_cloud" volume remove --minutes 15 "$volume"
26     done
27 fi