Merge "Remove neutron carbon jobs"
[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
17 echo "---> Orphaned volumes"
18 if [ ${#os_volumes[@]} -eq 0 ]; then
19     echo "No orphaned volumes found."
20 else
21     for volume in "${os_volumes[@]}"; do
22         echo "Removing volume $volume"
23         lftools openstack --os-cloud vex volume remove --minutes 15 "$volume"
24     done
25 fi
26
27 deactivate