Add script to remove stale volumes
[releng/builder.git] / jjb / odl-openstack-cleanup-stale-volumes.sh
1 #!/bin/bash
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 # shellcheck source=/tmp/v/openstack/bin/activate disable=SC1091
14 source "/tmp/v/openstack/bin/activate"
15 mapfile -t os_volumes < <(openstack volume list -f value -c ID --status Available)
16 deactivate
17
18 # shellcheck source=/tmp/v/lftools/bin/activate disable=SC1091
19 source "/tmp/v/lftools/bin/activate"
20 echo "---> Orphaned volumes"
21 if [ ${#os_volumes[@]} -eq 0 ]; then
22     echo "No orphaned volumes found."
23 else
24     for volume in "${os_volumes[@]}"; do
25         echo "Removing volume $volume"
26         lftools openstack --os-cloud vex volume remove --minutes 15 "$volume"
27     done
28 fi
29 deactivate