Skip to content
Snippets Groups Projects
Commit b2ba81bb authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Improve ansible deployment failure reporting"

parents 395dce52 6190411d
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,9 @@ export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
function print_failure {
docker ps -a
docker logs bootstrap_keystone
for failed in $(docker ps -a --format "{{.Names}}" --filter status=exited); do
docker logs --tail=all $failed
done
echo "FAILED"
exit 1
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment