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>
23 lines
529 B
Bash
Executable File
23 lines
529 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o xtrace
|
|
set -o errexit
|
|
|
|
# Enable unbuffered output for Ansible in Jenkins.
|
|
export PYTHONUNBUFFERED=1
|
|
|
|
|
|
function upgrade_bifrost {
|
|
RAW_INVENTORY=/etc/kolla/inventory
|
|
|
|
# TODO(mgoddard): run prechecks.
|
|
# TODO(mgoddard): add pull action when we have a local registry service in
|
|
# CI.
|
|
# TODO(mgoddard): make some configuration file changes and trigger a real
|
|
# upgrade.
|
|
tools/kolla-ansible -i ${RAW_INVENTORY} -vvv deploy-bifrost &> /tmp/logs/ansible/upgrade-bifrost
|
|
}
|
|
|
|
|
|
upgrade_bifrost
|