Remove stacks created by tempest script before recreating

In case user wants to re-run a script that failed (e.g because of a
timeout), next run should not fail just because the stacks were
already created.

Change-Id: I5b3650225794704de5433a24f678decc69212997
This commit is contained in:
Jiří Suchomel 2019-10-07 13:58:49 +02:00
parent 81884d8a60
commit 71a6af325c

View File

@ -21,6 +21,7 @@ export OSH_EXT_NET_NAME="public"
export OSH_EXT_SUBNET_NAME="public-subnet"
export OSH_EXT_SUBNET="172.24.4.0/24"
export OSH_BR_EX_ADDR="172.24.4.1/24"
openstack stack delete --wait --yes heat-public-net-deployment >/dev/null 2>&1 || true
openstack stack create --wait \
--parameter network_name=${OSH_EXT_NET_NAME} \
--parameter physical_network_name=public \
@ -33,6 +34,7 @@ openstack stack create --wait \
export OSH_PRIVATE_SUBNET_POOL="10.0.0.0/8"
export OSH_PRIVATE_SUBNET_POOL_NAME="shared-default-subnetpool"
export OSH_PRIVATE_SUBNET_POOL_DEF_PREFIX="24"
openstack stack delete --wait --yes heat-subnet-pool-deployment >/dev/null 2>&1 || true
openstack stack create --wait \
--parameter subnet_pool_name=${OSH_PRIVATE_SUBNET_POOL_NAME} \
--parameter subnet_pool_prefixes=${OSH_PRIVATE_SUBNET_POOL} \