diff options
author | Michael Chapman <woppin@gmail.com> | 2016-02-09 16:55:27 +1100 |
---|---|---|
committer | Michael Chapman <woppin@gmail.com> | 2016-02-09 23:29:10 +1100 |
commit | 162d5317062198c8ae2193715b90abb2e43bb3f0 (patch) | |
tree | 45229cca5c3d69af01dc8d82e59754ba0297de52 /ci/deploy.sh | |
parent | 404defbb8bb4591a75e876c515872bc2451ca530 (diff) |
Aggregate deployment logs of overcloud
JIRA: APEX-74
/var/log/messages for each node will be slurped into a new folder in the
stack user's home directory. If debug was passed, it will also be printed
out along with the nova list for that node.
Change-Id: I726da67b076bdf1fb38ba1805456cbd7c7d9e096
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 2e3bea71..8dc9d7f2 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -985,6 +985,34 @@ EOF done EOI fi + + # Collect deployment logs + ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI +mkdir -p ~/deploy_logs +rm -rf deploy_logs/* +source stackrc +set -o errexit +for node in \$(nova list | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+"); do + ssh -T ${SSH_OPTIONS[@]} "heat-admin@\$node" <<EOF + sudo cp /var/log/messages /home/heat-admin/messages.log + sudo chown heat-admin /home/heat-admin/messages.log +EOF +scp ${SSH_OPTIONS[@]} heat-admin@\$node:/home/heat-admin/messages.log ~/deploy_logs/\$node.messages.log +if [ \$debug == "TRUE" ]; then + nova list --ip \$node + echo "---------------------------" + echo "-----/var/log/messages-----" + echo "---------------------------" + cat ~/deploy_logs/\$node.messages.log + echo "---------------------------" + echo "----------END LOG----------" + echo "---------------------------" +fi + ssh -T ${SSH_OPTIONS[@]} "heat-admin@\$node" <<EOF + sudo rm -f /home/heat-admin/messages.log +EOF +done +EOI } display_usage() { |