b9aa8b38f4
Otherwise ara had only the stderr part and logs only the stdout part which made ordered analysis harder. Additionally add -vvv for the bootstrap-servers run. Change-Id: Ia42ac9b90a17245e9df277c40bda24308ebcd11d Signed-off-by: Radosław Piliszek <radoslaw.piliszek@gmail.com>
22 lines
469 B
Bash
Executable File
22 lines
469 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o xtrace
|
|
set -o errexit
|
|
|
|
# Enable unbuffered output for Ansible in Jenkins.
|
|
export PYTHONUNBUFFERED=1
|
|
|
|
|
|
function deploy_bifrost {
|
|
RAW_INVENTORY=/etc/kolla/inventory
|
|
|
|
# TODO(mgoddard): run prechecks.
|
|
# Deploy the bifrost container.
|
|
# TODO(mgoddard): add pull action when we have a local registry service in
|
|
# CI.
|
|
tools/kolla-ansible -i ${RAW_INVENTORY} -vvv deploy-bifrost &> /tmp/logs/ansible/deploy-bifrost
|
|
}
|
|
|
|
|
|
deploy_bifrost
|