X-Git-Url: https://gerrit.nordix.org/gitweb?a=blobdiff_plain;f=jjb%2Fcloud-infra%2Fdelete-heat-stack.sh;h=efec47b77b0af7f076304a79e25d4c9dec599618;hb=b2205c4e7fafbadc724db1da0c2c7c1e58370e9c;hp=872ba304d9d67f82da1cc5c38959aa73debe5453;hpb=2fc1c774cc2972caaf6ca0bff7cc8aa7f01b3e95;p=infra%2Fcicd.git diff --git a/jjb/cloud-infra/delete-heat-stack.sh b/jjb/cloud-infra/delete-heat-stack.sh index 872ba304..efec47b7 100644 --- a/jjb/cloud-infra/delete-heat-stack.sh +++ b/jjb/cloud-infra/delete-heat-stack.sh @@ -29,17 +29,18 @@ if [[ $DEPLOY_TYPE != "cloud" ]]; then exit 0 fi -# we only support k8s scenario deployment on openstack as of now -if [[ "$DEPLOY_SCENARIO" != "k8-*" ]] && [[ "$PROVISIONER_TYPE" == "heat" ]]; then +# do not delete the stack if not explicitly set to delete +if [[ "$DELETE_STACK" != "yes" ]]; then echo "-------------------------------------------------------------------------" - echo "Info: Only k8s scenario deployment on OpenStack has been implemented!" + echo "Info: Stack will not be deleted upon the completion of the job!" echo "-------------------------------------------------------------------------" exit 0 fi -if [[ "$DELETE_STACK" != "yes" ]]; then +# k8s and onap scenario have stacks so exit for others +if [[ ! "$DEPLOY_SCENARIO" =~ ^k8-.*|^onap-.* ]]; then echo "-------------------------------------------------------------------------" - echo "Info: Stack will not be deleted upon the completion of the job!" + echo "Info: Nothing to delete!" echo "-------------------------------------------------------------------------" exit 0 fi @@ -59,11 +60,12 @@ set +u source $WORKSPACE/.venv/bin/activate set -u pip install -q openstacksdk python-openstackclient python-heatclient -echo "Info: Deleting stack $STACK_NAME" +echo "Info: Deleting stack $STACK_NAME and keypair $KEYPAIR_NAME" echo "-------------------------------------------------------------------------" source /tmp/openrc && /bin/rm -f /tmp/openrc openstack stack delete $STACK_NAME --wait --yes +openstack keypair delete $KEYPAIR_NAME echo "-------------------------------------------------------------------------" -echo "Info: Stack $STACK_NAME has been deleted!" +echo "Info: Stack $STACK_NAME and keypair $KEYPAIR_NAME have been deleted!" # vim: set ts=2 sw=2 expandtab: