diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-01-03 11:19:28 -0800 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-01-05 18:14:33 +0000 |
commit | cc10f1c1645ce35626cc36230a4acfc6c6aa7e25 (patch) | |
tree | 523289aac53d1b49f0b048089de6c4cee634ae07 /test/ete/scripts/deploy-onap.sh | |
parent | 3512cee24ee66ada4c78c63dd471a6a6609c11e4 (diff) |
ONAP environment teardown script
Change-Id: I27afbc37ec35f374d1c82ada60698a9461627c72
Issue-ID: INT-278
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
(cherry picked from commit e681bedc94e346a0f7de570bcf17b831755d876d)
Diffstat (limited to 'test/ete/scripts/deploy-onap.sh')
-rwxr-xr-x | test/ete/scripts/deploy-onap.sh | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/test/ete/scripts/deploy-onap.sh b/test/ete/scripts/deploy-onap.sh index 5c74da7c9..c72de1ce6 100755 --- a/test/ete/scripts/deploy-onap.sh +++ b/test/ete/scripts/deploy-onap.sh @@ -6,31 +6,7 @@ fi source $WORKSPACE/test/ete/scripts/install_openstack_cli.sh -# Delete all existing stacks -STACKS=$(openstack stack list -c "Stack Name" -f value) - -if [ ! -z "${STACKS}" ]; then - echo "Deleting Stacks ${STACKS}" - openstack stack delete -y $STACKS - for STACK in ${STACKS}; do - until [ "DELETE_IN_PROGRESS" != "$(openstack stack show -c stack_status -f value $STACK)" ]; do - sleep 30 - done - done -else - echo "No existing stacks to delete." -fi - -# miscellaneous cleanup -openstack floating ip delete $(openstack floating ip list -c ID -f value) -openstack port delete $(openstack port list -f value -c ID) -openstack router delete $(openstack router list -f value -c ID) -openstack port delete $(openstack port list -f value -c ID) -openstack router delete $(openstack router list -f value -c ID) -openstack port delete $(openstack port list -f value -c ID) -openstack volume delete $(openstack volume list -f value -c ID) - - +$WORKSPACE/test/ete/scripts/teardown-onap.sh STACK="ete-$(uuidgen | cut -c-8)" echo "New Stack Name: ${STACK}" |