368ce8bc231a979012a689b3a642beee11f51d5c
[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
18 ##LIBRARIES
19 source $CONFIG/lib/common-functions.sh
20
21 vm_index=4
22 ovs_bridges="br-admin br-private br-public br-storage"
23 OPNFV_NETWORK_TYPES="admin_network private_network public_network storage_network"
24
25 # Clean off instack/undercloud VM
26 for vm in instack undercloud; do
27   virsh destroy $vm 2> /dev/null | xargs echo -n
28   virsh undefine $vm 2> /dev/null | xargs echo -n
29   /usr/bin/touch /var/lib/libvirt/images/${vm}.qcow2
30   virsh vol-delete ${vm}.qcow2 --pool default 2> /dev/null | xargs echo -n
31   rm -f /var/lib/libvirt/images/${vm}.qcow2 2> /dev/null
32 done
33
34 # Clean off baremetal VMs in case they exist
35 for i in $(seq 0 $vm_index); do
36   virsh destroy baremetal$i 2> /dev/null | xargs echo -n
37   virsh undefine baremetal$i 2> /dev/null | xargs echo -n
38   /usr/bin/touch /var/lib/libvirt/images/baremetal${i}.qcow2
39   virsh vol-delete baremetal${i}.qcow2 --pool default 2> /dev/null | xargs echo -n
40   rm -f /var/lib/libvirt/images/baremetal${i}.qcow2 2> /dev/null
41 done
42
43 for network in ${OPNFV_NETWORK_TYPES}; do
44   virsh net-destroy ${network} 2> /dev/null
45   virsh net-undefine ${network} 2> /dev/null
46 done
47
48 # Clean off created bridges
49 for bridge in ${ovs_bridges}; do
50   if detach_interface_from_ovs ${bridge} 2> /dev/null; then
51     ovs-vsctl del-br ${bridge} 2> /dev/null
52   fi
53 done
54
55 # clean pub keys from root's auth keys
56 sed -i '/stack@undercloud.localdomain/d' /root/.ssh/authorized_keys
57 sed -i '/virtual-power-key/d' /root/.ssh/authorized_keys
58
59
60 # force storage cleanup
61 virsh pool-refresh default
62
63 echo "Cleanup Completed"