Fix variables gathering for add-compute script

We add openstack-hosts tag for the openstack-hosts-setup.yml to gather
hosts facts. Otherwise play may fail while task
`Gather variables for each operating system` due to undefined
ansible_* facts.
We don't need some common steps in futher plays since gathered facts are
already cached.

Change-Id: I068c5b26663cfce8327935850f043ab7d3dd2f61
This commit is contained in:
Dmitriy Rabotyagov 2020-05-12 19:00:34 +03:00
parent e729d39e2b
commit 70a00cc28d

View File

@ -32,7 +32,7 @@ function define_tasks {
RUN_TASKS+=("${OSA_REPO_PATH}/playbooks/setup-hosts.yml --limit ${HOSTS}")
RUN_TASKS+=("${OSA_REPO_PATH}/playbooks/setup-openstack.yml --limit ${HOSTS}")
RUN_TASKS+=("${OSA_REPO_PATH}/playbooks/openstack-hosts-setup.yml --tags openstack_hosts-config")
RUN_TASKS+=("${OSA_REPO_PATH}/playbooks/openstack-hosts-setup.yml --tags openstack_hosts-config,openstack-hosts")
RUN_TASKS+=("${OSA_REPO_PATH}/playbooks/unbound-install.yml --tags unbound-config")
RUN_TASKS+=("${OSA_REPO_PATH}/playbooks/os-nova-install.yml --tags nova-key --limit nova_compute")