blob: 6261f01e96404494e3d01d606855d672a07e9593 [file] [log] [blame]
Matteo Scandolo3896c472017-08-01 13:31:42 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
Matteo Scandolo9e557c62017-03-15 11:03:13 -070017#!/bin/bash
18
19function cleanup_network {
20 NETWORK=$1
21 SUBNETS=`neutron net-show $NETWORK | grep -i subnets | awk '{print $4}'`
22 if [[ $SUBNETS != "" ]]; then
23 PORTS=`neutron port-list | grep -i $SUBNETS | awk '{print $2}'`
24 for PORT in $PORTS; do
25 echo "Deleting port $PORT"
26 neutron port-delete $PORT
27 done
28 fi
29 neutron net-delete $NETWORK
30}
31
Zack Williamsa88041c2017-09-13 10:11:55 -070032source /opt/cord_profile/admin-openrc.sh
Matteo Scandolo9e557c62017-03-15 11:03:13 -070033
34echo "Deleting VMs"
35# Delete all VMs
36VMS=$( nova list --all-tenants|grep mysite|awk '{print $2}' )
37for VM in $VMS
38do
39 nova delete $VM
40done
41
42echo "Waiting 5 seconds..."
43sleep 5
44
45cleanup_network lan_network
46cleanup_network wan_network
47cleanup_network mysite_vcpe-private
48cleanup_network mysite_vsg-access
Scott Bakerd25f0e92017-10-13 14:27:37 -070049cleanup_network mysite_veg-access
Matteo Scandolo9e557c62017-03-15 11:03:13 -070050cleanup_network management
51cleanup_network management_hosts
52
53echo "Deleting networks"
54# Delete all networks beginning with mysite_
55NETS=$( neutron net-list --all-tenants|grep mysite|awk '{print $2}' )
56for NET in $NETS
57do
58 neutron net-delete $NET
59done
60
61neutron net-delete lan_network || true
62neutron net-delete subscriber_network || true
63neutron net-delete public_network || true
64neutron net-delete hpc_client_network || true
65neutron net-delete ceilometer_network || true
66neutron net-delete management || true
67neutron net-delete management_hosts || true
68neutron net-delete mysite_vsg-access || true
Scott Bakerd25f0e92017-10-13 14:27:37 -070069neutron net-delete mysite_veg-access || true
Matteo Scandolo9e557c62017-03-15 11:03:13 -070070neutron net-delete public || true
71neutron net-delete exampleservice_network || true
Andy Bavier0b6f1112017-11-20 17:10:47 -070072neutron net-delete spgw_network || true
73neutron net-delete s11_network || true
74neutron net-delete s1u_network || true
75neutron net-delete sgi_network || true