Update ARA variable

In queens the ARA bootstrapping is controlled by SETUP_ARA, not
INSTALL_ARA.

Change-Id: Ic9f23ca01cabb3ed37ba51123ed040b0a34cec92
This commit is contained in:
Logan V 2019-03-17 14:53:56 -05:00
parent 5a0cd7db1d
commit b1f434c747
2 changed files with 3 additions and 3 deletions

View File

@ -4,12 +4,12 @@ set -e
export SCRIPT_PATH=$(dirname $(readlink -f "$0"))
export PROJECT_PATH=$(dirname "$SCRIPT_PATH")
export INSTALL_ARA="${INSTALL_ARA:-false}"
export SETUP_ARA="${SETUP_ARA:-false}"
cp -R ${PROJECT_PATH}/openstack_deploy /etc
pushd ${PROJECT_PATH}/openstack-ansible
source scripts/bootstrap-ansible.sh
if [ "$INSTALL_ARA" == true ]; then
if [ "$SETUP_ARA" == true ]; then
setup_ara
fi
popd

View File

@ -6,7 +6,7 @@
environment:
SSH_AUTH_SOCK: "{{ ssh_agent_sock }}"
ANSIBLE_VAULT_PASSWORD_FILE: "{{ vault_key_path }}"
INSTALL_ARA: true
SETUP_ARA: true
tasks:
- name: Run the deploy job
command: scripts/run_deploy.sh