diff options
author | Tim Rozet <trozet@redhat.com> | 2016-04-11 14:22:27 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-04-19 13:14:38 -0400 |
commit | 92e4b9310b8582bcd751ce0f8fe3fab98d195d71 (patch) | |
tree | 8e45801af0a170213cc9adb7e5451a297acd1b55 /ci/deploy.sh | |
parent | 9c61a258f48ab463bde4b06045b49a64de1d6336 (diff) |
Adds Utility functions and failure logging
Patch adds helpful utility functions and automatic parsing of heat
output into a readable format indicating where a failure is in a
deployment. Example: http://fpaste.org/354210/
New opnfv-util function allows a user to interact with a deployment
easily:
- opnfv-util undercloud <user> connects user to undercloud VM
- opnfv-util debug-stack parses the heat failure output
Above arguments also accept partial matches.
JIRA: APEX-75
Change-Id: I5ccfee64ee2958de0d00a3b25cd9b29de60c9e20
Signed-off-by: Tim Rozet <trozet@redhat.com>
(cherry picked from commit 0717bc3c56ab294f860ef99116754c1fd786cae7)
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 13f9382f..731cd44d 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -926,8 +926,12 @@ EOI ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI source stackrc -set -o errexit openstack overcloud deploy --templates $DEPLOY_OPTIONS --timeout 90 +if ! heat stack-list | grep CREATE_COMPLETE 1>/dev/null; then + $(typeset -f debug_stack) + debug_stack + exit 1 +fi EOI if [ "$debug" == 'TRUE' ]; then @@ -1178,6 +1182,7 @@ parse_cmdline() { ##LIBRARIES # Do this after cli parse so that $CONFIG is set properly source $CONFIG/lib/common-functions.sh + source $CONFIG/lib/utility-functions.sh source $CONFIG/lib/installer/onos/onos_gw_mac_update.sh } |