Merge "adding control of number of virtual compute nodes"
[apex.git] / ci / clean.sh
1 #!/usr/bin/env bash
2 ##############################################################################
3 # Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 #Clean script to uninstall provisioning server for Apex
12 #author: Dan Radez (dradez@redhat.com)
13 #author: Tim Rozet (trozet@redhat.com)
14
15 # Use default if no param passed
16 CONFIG=${CONFIG:-'/var/opt/opnfv'}
17 RESOURCES=${RESOURCES:-"$CONFIG/images"}
18 LIB=${LIB:-"$CONFIG/lib"}
19
20 ##LIBRARIES
21 source $LIB/common-functions.sh
22
23 vm_index=4
24 ovs_bridges="br-admin br-private br-public br-storage"
25 OPNFV_NETWORK_TYPES="admin_network private_network public_network storage_network"
26
27 # Clean off instack/undercloud VM
28 for vm in instack undercloud; do
29   virsh destroy $vm 2> /dev/null | xargs echo -n
30   virsh undefine $vm 2> /dev/null | xargs echo -n
31   /usr/bin/touch /var/lib/libvirt/images/${vm}.qcow2
32   virsh vol-delete ${vm}.qcow2 --pool default 2> /dev/null | xargs echo -n
33   rm -f /var/lib/libvirt/images/${vm}.qcow2 2> /dev/null
34 done
35
36 # Clean off baremetal VMs in case they exist
37 for i in $(seq 0 $vm_index); do
38   virsh destroy baremetal$i 2> /dev/null | xargs echo -n
39   virsh undefine baremetal$i 2> /dev/null | xargs echo -n
40   /usr/bin/touch /var/lib/libvirt/images/baremetal${i}.qcow2
41   virsh vol-delete baremetal${i}.qcow2 --pool default 2> /dev/null | xargs echo -n
42   rm -f /var/lib/libvirt/images/baremetal${i}.qcow2 2> /dev/null
43 done
44
45 for network in ${OPNFV_NETWORK_TYPES}; do
46   virsh net-destroy ${network} 2> /dev/null
47   virsh net-undefine ${network} 2> /dev/null
48 done
49
50 # Clean off created bridges
51 for bridge in ${ovs_bridges}; do
52   if detach_interface_from_ovs ${bridge} 2> /dev/null; then
53     ovs-vsctl del-br ${bridge} 2> /dev/null
54   fi
55 done
56
57 # clean pub keys from root's auth keys
58 sed -i '/stack@undercloud.localdomain/d' /root/.ssh/authorized_keys
59 sed -i '/virtual-power-key/d' /root/.ssh/authorized_keys
60
61
62 # force storage cleanup
63 virsh pool-refresh default
64
65 echo "Cleanup Completed"