3745eb25349b2974d1f0f65e05d044da6a46d19d
[releng/builder.git] / jjb / odl-openstack-cleanup-stale-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
13 mapfile -t os_volumes < <(openstack volume list -f value -c ID --status Available)
14
15 echo "---> Orphaned volumes"
16 if [ ${#os_volumes[@]} -eq 0 ]; then
17     echo "No orphaned volumes found."
18 else
19     for volume in "${os_volumes[@]}"; do
20         echo "Removing volume $volume"
21         lftools openstack --os-cloud vex volume remove --minutes 15 "$volume"
22     done
23 fi