From 0717bc3c56ab294f860ef99116754c1fd786cae7 Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Mon, 11 Apr 2016 14:22:27 -0400 Subject: 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 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 --- ci/deploy.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'ci/deploy.sh') diff --git a/ci/deploy.sh b/ci/deploy.sh index c14a91e3..3684ad56 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -974,8 +974,12 @@ EOI ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" </dev/null; then + $(typeset -f debug_stack) + debug_stack + exit 1 +fi EOI if [ "$debug" == 'TRUE' ]; then -- cgit 1.2.3-korg