79da58af0d631386f4fbdfbc787c7259235e1ee2
[releng/global-jjb.git] / shell / openstack-stack-delete.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2019 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> openstack-stack-delete.sh"
12
13 set -eufo pipefail
14
15 # shellcheck disable=SC1090
16 source ~/lf-env.sh
17
18 lf-activate-venv lftools[openstack] python-openstackclient
19
20 echo "INFO: Retrieving stack cost for: $OS_STACK_NAME"
21 if ! lftools openstack --os-cloud "$OS_CLOUD" stack cost "$OS_STACK_NAME" > stack-cost; then
22     echo "WARNING: Unable to get stack costs, continuing anyway"
23     echo "total: 0" > stack-cost
24 else
25     echo "DEBUG: Successfully retrieved stack cost: $(cat stack-cost)"
26 fi
27
28 # Delete the stack even if the stack-cost script fails
29 lftools openstack --os-cloud "$OS_CLOUD" stack delete "$OS_STACK_NAME" \
30     | echo "INFO: $(cat)"
31