Resolve issue with undefined facts while running with tags

Ansible fixed "issue" where gather_facts was working with any tag defined
Now this behaviour changed and we need to gather facts not depending on
the provided tag. Some info provided here [1]

[1] https://github.com/ansible/ansible/issues/57529

Change-Id: Idc8be5f490cba79e70a45d159718ab68c78cbcee
This commit is contained in:
Dmitriy Rabotyagov 2020-05-14 20:52:53 +03:00
parent 103f3d84c3
commit 9b50edb626
51 changed files with 375 additions and 98 deletions

View File

@ -21,7 +21,7 @@ mgr_group_name: "{{ mon_group_name }}"
osd_group_name: ceph-osd osd_group_name: ceph-osd
rgw_group_name: ceph-rgw rgw_group_name: ceph-rgw
mds_group_name: ceph-mds mds_group_name: ceph-mds
nfs_group_name: nfss nfs_group_name: ceph-nfs
ceph_origin: "{{ (ansible_pkg_mgr == 'zypper') | ternary('distro', 'repository') }}" ceph_origin: "{{ (ansible_pkg_mgr == 'zypper') | ternary('distro', 'repository') }}"
ceph_repository: community ceph_repository: community
# The _stable_release var is used by both the OSA ceph_client role and the # The _stable_release var is used by both the OSA ceph_client role and the

View File

@ -13,9 +13,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather ceph-mon facts
hosts: ceph-mon
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install ceph mons - name: Install ceph mons
hosts: ceph-mon hosts: ceph-mon
user: root user: root
gather_facts: false
vars_files: vars_files:
- "defaults/{{ install_method }}_install.yml" - "defaults/{{ install_method }}_install.yml"
- "defaults/ceph_ansible.yml" - "defaults/ceph_ansible.yml"
@ -44,17 +51,6 @@
- ansible_pkg_mgr in ['yum', 'dnf'] - ansible_pkg_mgr in ['yum', 'dnf']
- ansible_service_mgr == 'systemd' - ansible_service_mgr == 'systemd'
# Set the priority of the ceph community apt repo either above or below that of UCA or distro sources
- name: Set apt package pins
include_role:
name: apt_package_pinning
vars:
apt_package_pinning_file_name: "ceph_community_pin.pref"
apt_package_pinning_priority: "{{ (ceph_repository == 'community') | ternary(1000, 100) }}"
apt_pinned_packages: [{ package: '*', release: 'ceph.com' }]
when:
- ansible_pkg_mgr == 'apt'
roles: roles:
- role: ceph-defaults - role: ceph-defaults
tags: tags:
@ -95,9 +91,16 @@
- ceph - ceph
- ceph-mon - ceph-mon
- name: Gather ceph-osd facts
hosts: ceph-osd
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install ceph osds - name: Install ceph osds
hosts: ceph-osd hosts: ceph-osd
user: root user: root
gather_facts: false
vars_files: vars_files:
- "defaults/{{ install_method }}_install.yml" - "defaults/{{ install_method }}_install.yml"
- "defaults/ceph_ansible.yml" - "defaults/ceph_ansible.yml"
@ -105,28 +108,6 @@
- import_tasks: common-tasks/ceph-server.yml - import_tasks: common-tasks/ceph-server.yml
- name: Gather ceph-mon facts
action: setup
delegate_to: "{{ item }}"
delegate_facts: yes
with_items: "{{ groups[mon_group_name] }}"
when:
- inventory_hostname == ansible_play_hosts[0]
tags:
- ceph-osd
- ceph-mon-facts
# Set the priority of the ceph community apt repo either above or below that of UCA or distro sources
- name: Set apt package pins
include_role:
name: apt_package_pinning
vars:
apt_package_pinning_file_name: "ceph_community_pin.pref"
apt_package_pinning_priority: "{{ (ceph_repository == 'community') | ternary(1000, 100) }}"
apt_pinned_packages: [{ package: '*', release: 'ceph.com' }]
when:
- ansible_pkg_mgr == 'apt'
roles: roles:
- role: ceph-defaults - role: ceph-defaults
tags: tags:
@ -162,23 +143,19 @@
- ceph - ceph
- ceph-osd - ceph-osd
- name: Gather ceph-mds facts
hosts: ceph-mds
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install ceph metadata servers - name: Install ceph metadata servers
hosts: ceph-mds hosts: ceph-mds
gather_facts: false
user: root user: root
vars_files: vars_files:
- "defaults/{{ install_method }}_install.yml" - "defaults/{{ install_method }}_install.yml"
- "defaults/ceph_ansible.yml" - "defaults/ceph_ansible.yml"
pre_tasks:
- name: Gather ceph-mon facts
action: setup
delegate_to: "{{ item }}"
delegate_facts: yes
with_items: "{{ groups[mon_group_name] }}"
when:
- inventory_hostname == ansible_play_hosts[0]
tags:
- ceph-mon-facts
- ceph-mds
roles: roles:
- role: ceph-defaults - role: ceph-defaults
tags: tags:

View File

@ -13,8 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather ceph-nfs facts
hosts: ceph-nfs
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install nfs-ganesha server - name: Install nfs-ganesha server
hosts: ceph-nfs hosts: ceph-nfs
gather_facts: false
user: root user: root
vars_files: vars_files:
- "defaults/{{ install_method }}_install.yml" - "defaults/{{ install_method }}_install.yml"

View File

@ -14,10 +14,17 @@
# limitations under the License. # limitations under the License.
- import_playbook: ceph-rgw-keystone-setup.yml - import_playbook: ceph-rgw-keystone-setup.yml
when: (groups['ceph-rgw'] is defined and groups['ceph-rgw'] | length > 0) or (ceph_rgws | length > 0) when: (groups[rgw_group_name] is defined and groups[rgw_group_name] | length > 0) or (ceph_rgws | length > 0)
- name: Gather ceph-rgw facts
hosts: ceph-rgw
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install ceph radosgw - name: Install ceph radosgw
hosts: ceph-rgw hosts: ceph-rgw
gather_facts: false
user: root user: root
vars_files: vars_files:
- "defaults/{{ install_method }}_install.yml" - "defaults/{{ install_method }}_install.yml"

View File

@ -13,10 +13,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather cinder facts
hosts: "{{ cinder_hosts }}"
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install cinder services - name: Install cinder services
hosts: "{{ cinder_hosts }}" hosts: "{{ cinder_hosts }}"
serial: "{{ cinder_serial }}" serial: "{{ cinder_serial }}"
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,10 +13,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather glance facts
hosts: "{{ glance_hosts }}"
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install glance services - name: Install glance services
hosts: "{{ glance_hosts }}" hosts: "{{ glance_hosts }}"
serial: "{{ glance_serial }}" serial: "{{ glance_serial }}"
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,10 +13,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather neutron facts
hosts: "{{ neutron_hosts }}"
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install neutron services - name: Install neutron services
hosts: "{{ neutron_hosts }}" hosts: "{{ neutron_hosts }}"
serial: "{{ neutron_serial }}" serial: "{{ neutron_serial }}"
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,6 +13,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather nova facts
hosts: "{{ nova_hosts }}"
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install nova services - name: Install nova services
hosts: "{{ nova_hosts }}" hosts: "{{ nova_hosts }}"
serial: "{{ nova_serial }}" serial: "{{ nova_serial }}"

View File

@ -60,10 +60,16 @@
setup: setup:
gather_subset: "network,hardware,virtual" gather_subset: "network,hardware,virtual"
- name: Gather lxc containers facts
hosts: all_lxc_containers
gather_facts: true
tags:
- always
- name: Configure containers default software - name: Configure containers default software
hosts: all_lxc_containers hosts: all_lxc_containers
user: root user: root
gather_facts: true gather_facts: false
vars_files: vars_files:
- defaults/repo_packages/openstack_services.yml - defaults/repo_packages/openstack_services.yml
- "defaults/{{ install_method }}_install.yml" - "defaults/{{ install_method }}_install.yml"

View File

@ -13,10 +13,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather lxc hosts facts
hosts: "{{ lxc_host_group | default('lxc_hosts') }}"
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Basic lxc host setup - name: Basic lxc host setup
hosts: "{{ lxc_host_group | default('lxc_hosts') }}" hosts: "{{ lxc_host_group | default('lxc_hosts') }}"
user: root user: root
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
vars_files: vars_files:
- defaults/repo_packages/openstack_services.yml - defaults/repo_packages/openstack_services.yml
- "defaults/{{ install_method }}_install.yml" - "defaults/{{ install_method }}_install.yml"

View File

@ -13,10 +13,11 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather nspawn container host facts - name: Gather nspawn host facts
hosts: "{{ nspawn_host_group | default('nspawn_hosts') }}" hosts: "{{ nspawn_host_group | default('nspawn_hosts') }}"
gather_facts: true gather_facts: true
tags:
- always
- name: Set nspawn containers group - name: Set nspawn containers group
hosts: "{{ container_group | default('all_containers') }}" hosts: "{{ container_group | default('all_containers') }}"
@ -61,10 +62,15 @@
command: "btrfs quota rescan -w /var/lib/machines" command: "btrfs quota rescan -w /var/lib/machines"
changed_when: false changed_when: false
- name: Gather nspawn containers facts
hosts: all_nspawn_containers
gather_facts: true
tags:
- always
- name: Configure containers default software - name: Configure containers default software
hosts: all_nspawn_containers hosts: all_nspawn_containers
gather_facts: true gather_facts: false
user: root user: root
vars_files: vars_files:
- defaults/repo_packages/openstack_services.yml - defaults/repo_packages/openstack_services.yml

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Additional nspawn host setup - name: Gather nspawn hosts facts
hosts: "{{ nspawn_host_group | default('nspawn_hosts') }}" hosts: "{{ nspawn_host_group | default('nspawn_hosts') }}"
gather_facts: true gather_facts: true
tags:
- always
- name: Additional nspawn host setup
hosts: "{{ nspawn_host_group | default('nspawn_hosts') }}"
gather_facts: false
vars_files: vars_files:
- "defaults/{{ install_method }}_install.yml" - "defaults/{{ install_method }}_install.yml"
user: root user: root

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install etcd server cluster - name: Gather etcd facts
hosts: etcd hosts: etcd
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install etcd server cluster
hosts: etcd
gather_facts: false
user: root user: root
pre_tasks: pre_tasks:
- include_tasks: "common-tasks/os-{{ container_tech | default('lxc') }}-container-setup.yml" - include_tasks: "common-tasks/os-{{ container_tech | default('lxc') }}-container-setup.yml"

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Galera container config - name: Gather galera facts
hosts: galera_all hosts: galera_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Galera container config
hosts: galera_all
gather_facts: false
serial: 1 serial: 1
user: root user: root
tasks: tasks:
@ -34,7 +40,7 @@
- name: Install galera server - name: Install galera server
hosts: galera_all hosts: galera_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
serial: 1 serial: 1
user: root user: root
roles: roles:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: haproxy base config - name: Gather haproxy facts
hosts: haproxy hosts: haproxy
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: haproxy base config
hosts: haproxy
gather_facts: false
serial: "50%" serial: "50%"
user: root user: root
pre_tasks: pre_tasks:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install Journal-Remote - name: Gather facts
hosts: hosts hosts: hosts
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install Journal-Remote
hosts: hosts
gather_facts: false
become: true become: true
handlers: handlers:
- name: Restart systemd-journald - name: Restart systemd-journald

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install memcached - name: Gather memcached facts
hosts: memcached hosts: memcached
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install memcached
hosts: memcached
gather_facts: false
user: root user: root
pre_tasks: pre_tasks:
- include_tasks: "common-tasks/os-{{ container_tech | default('lxc') }}-container-setup.yml" - include_tasks: "common-tasks/os-{{ container_tech | default('lxc') }}-container-setup.yml"

View File

@ -39,9 +39,15 @@
changed_when: "result.rc == 2" changed_when: "result.rc == 2"
failed_when: "result.rc not in [0, 2]" failed_when: "result.rc not in [0, 2]"
- name: Basic host setup - name: Gather host facts
hosts: "{{ openstack_host_group|default('hosts') }}" hosts: "{{ openstack_host_group|default('hosts') }}"
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Basic host setup
hosts: "{{ openstack_host_group|default('hosts') }}"
gather_facts: false
user: root user: root
pre_tasks: pre_tasks:
- name: Check for a supported Operating System - name: Check for a supported Operating System

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install the aodh components - name: Gather aodh facts
hosts: aodh_all hosts: aodh_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install the aodh components
hosts: aodh_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Installation and setup of barbican - name: Gather barbican facts
hosts: barbican_all hosts: barbican_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Installation and setup of barbican
hosts: barbican_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install blazar components - name: Gather blazar facts
hosts: blazar_all hosts: blazar_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install blazar components
hosts: blazar_all
gather_facts: false
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
user: root user: root
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install the ceilometer components - name: Gather ceilometer facts
hosts: ceilometer_all hosts: ceilometer_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install the ceilometer components
hosts: ceilometer_all
gather_facts: false
user: root user: root
vars_files: vars_files:
- "defaults/repo_packages/openstack_services.yml" - "defaults/repo_packages/openstack_services.yml"

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather congress facts
hosts: congress_all
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install congress components - name: Install congress components
hosts: congress_all hosts: congress_all
gather_facts: "{{ gather_facts | default(True) }}" gather_facts: false
max_fail_percentage: 20 max_fail_percentage: 20
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"

View File

@ -16,9 +16,15 @@
# (c) 2016 Donovan Francesco <donovan.francesco@is.co.za> # (c) 2016 Donovan Francesco <donovan.francesco@is.co.za>
# (c) 2016 Paul Stevens <paul.stevens@is.co.za> # (c) 2016 Paul Stevens <paul.stevens@is.co.za>
- name: Install designate server - name: Gather designate facts
hosts: designate_all hosts: designate_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install designate server
hosts: designate_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,8 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather gnocchi facts
hosts: gnocchi_all
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install Gnocchi components - name: Install Gnocchi components
hosts: gnocchi_all hosts: gnocchi_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install heat server - name: Gather heat facts
hosts: heat_all hosts: heat_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install heat server
hosts: heat_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
tags: tags:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install horizon server - name: Gather horizon facts
hosts: horizon_all hosts: horizon_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install horizon server
hosts: horizon_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Installation and setup of Ironic - name: Gather ironic facts
hosts: ironic_all hosts: ironic_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Installation and setup of Ironic
hosts: ironic_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -28,12 +28,16 @@
roles: roles:
- role: "openstack_openrc" - role: "openstack_openrc"
- name: Gather keystone facts
hosts: keystone_all
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Installation and setup of Keystone - name: Installation and setup of Keystone
hosts: keystone_all hosts: keystone_all
serial: "{{ keystone_serial | default(['1', '100%']) }}" serial: "{{ keystone_serial | default(['1', '100%']) }}"
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -16,9 +16,16 @@
# (c) 2016 Donovan Francesco <donovan.francesco@is.co.za> # (c) 2016 Donovan Francesco <donovan.francesco@is.co.za>
# (c) 2016 Paul Stevens <paul.stevens@is.co.za> # (c) 2016 Paul Stevens <paul.stevens@is.co.za>
- name: Gather magnum facts
hosts: magnum_all
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install magnum server - name: Install magnum server
hosts: magnum_all hosts: magnum_all
user: root user: root
gather_facts: false
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:
- "defaults/repo_packages/openstack_services.yml" - "defaults/repo_packages/openstack_services.yml"

View File

@ -16,9 +16,15 @@
- name: Install ganesha-nfs - name: Install ganesha-nfs
import_playbook: ceph-nfs-install.yml import_playbook: ceph-nfs-install.yml
- name: Gather manila facts
hosts: manila_all
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install manila API services - name: Install manila API services
hosts: manila_api:manila_scheduler hosts: manila_api:manila_scheduler
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:
@ -60,7 +66,7 @@
- name: Install manila data services - name: Install manila data services
hosts: manila_data:manila_share hosts: manila_data:manila_share
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install the masakari components - name: Gather masakari facts
hosts: masakari_all hosts: masakari_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install the masakari components
hosts: masakari_all
gather_facts: false
user: root user: root
vars_files: vars_files:
- "defaults/repo_packages/openstack_services.yml" - "defaults/repo_packages/openstack_services.yml"

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install mistral components - name: Gather mistral facts
hosts: mistral_all hosts: mistral_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install mistral components
hosts: mistral_all
gather_facts: false
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
user: root user: root
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install murano components - name: Gather murano facts
hosts: murano_all hosts: murano_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install murano components
hosts: murano_all
gather_facts: false
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
user: root user: root
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install octavia server - name: Gather octavia facts
hosts: octavia_all hosts: octavia_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install octavia server
hosts: octavia_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -12,9 +12,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install the panko components - name: Gather panko facts
hosts: panko_all hosts: panko_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install the panko components
hosts: panko_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install placement components - name: Gather placement facts
hosts: placement_all hosts: placement_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install placement components
hosts: placement_all
gather_facts: false
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
user: root user: root
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Installation and setup of Rally - name: Gather rally facts
hosts: utility_all hosts: utility_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Installation and setup of Rally
hosts: utility_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -11,6 +11,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather sahara facts
hosts: sahara_all
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install sahara server - name: Install sahara server
hosts: sahara_all hosts: sahara_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Installation and setup of Swift - name: Gather swift facts
hosts: swift_all:swift_remote_all hosts: swift_all:swift_remote_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Installation and setup of Swift
hosts: swift_all:swift_remote_all
gather_facts: false
user: root user: root
vars_files: vars_files:
- "defaults/repo_packages/openstack_services.yml" - "defaults/repo_packages/openstack_services.yml"
@ -41,6 +47,7 @@
- name: Installation and setup of Swift - name: Installation and setup of Swift
hosts: swift_all hosts: swift_all
gather_facts: false
user: root user: root
roles: roles:
- role: "system_crontab_coordination" - role: "system_crontab_coordination"

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install the tacker components - name: Gather tacker facts
hosts: tacker_all hosts: tacker_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install the tacker components
hosts: tacker_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Installation and setup of Tempest - name: Gather tempest facts
hosts: utility_all[0] hosts: utility_all[0]
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Installation and setup of Tempest
hosts: utility_all[0]
gather_facts: false
user: root user: root
vars_files: vars_files:
- "defaults/repo_packages/openstack_services.yml" - "defaults/repo_packages/openstack_services.yml"

View File

@ -16,9 +16,15 @@
# (c) 2016 Donovan Francesco <donovan.francesco@is.co.za> # (c) 2016 Donovan Francesco <donovan.francesco@is.co.za>
# (c) 2016 Paul Stevens <paul.stevens@is.co.za> # (c) 2016 Paul Stevens <paul.stevens@is.co.za>
- name: Install trove server - name: Gather trove facts
hosts: trove_all hosts: trove_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install trove server
hosts: trove_all
gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather zun facts
hosts: zun
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install the zun components - name: Install the zun components
hosts: zun_all hosts: zun_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
user: root user: root
vars_files: vars_files:
- "defaults/repo_packages/openstack_services.yml" - "defaults/repo_packages/openstack_services.yml"

View File

@ -13,10 +13,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather qdrouterd facts
hosts: "{{ qdrouterd_host_group | default('qdrouterd_all') }}"
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Create and configure qdrouterd container - name: Create and configure qdrouterd container
hosts: "{{ qdrouterd_host_group | default('qdrouterd_all') }}" hosts: "{{ qdrouterd_host_group | default('qdrouterd_all') }}"
serial: 1 serial: 1
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
user: root user: root
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
tags: tags:
@ -39,6 +45,7 @@
hosts: "{{ qdrouterd_host_group | default('qdrouterd_all') }}" hosts: "{{ qdrouterd_host_group | default('qdrouterd_all') }}"
serial: 20% serial: 20%
user: root user: root
gather_facts: false
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
tags: tags:
- qdrouterd - qdrouterd

View File

@ -13,10 +13,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather etcd facts
hosts: "{{ rabbitmq_host_group | default('rabbitmq_all') }}"
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Create and configure rabbitmq container - name: Create and configure rabbitmq container
hosts: "{{ rabbitmq_host_group | default('rabbitmq_all') }}" hosts: "{{ rabbitmq_host_group | default('rabbitmq_all') }}"
serial: 1 serial: 1
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
user: root user: root
pre_tasks: pre_tasks:
- include_tasks: "common-tasks/os-{{ container_tech | default('lxc') }}-container-setup.yml" - include_tasks: "common-tasks/os-{{ container_tech | default('lxc') }}-container-setup.yml"
@ -38,6 +44,7 @@
# http://www.rabbitmq.com/clustering.html#upgrading # http://www.rabbitmq.com/clustering.html#upgrading
- name: Stop RabbitMQ nodes that are not the upgrader - name: Stop RabbitMQ nodes that are not the upgrader
hosts: "{{ rabbitmq_host_group | default('rabbitmq_all') }}[1:]" hosts: "{{ rabbitmq_host_group | default('rabbitmq_all') }}[1:]"
gather_facts: false
user: root user: root
tasks: tasks:
- name: "Stop RabbitMQ" - name: "Stop RabbitMQ"
@ -48,6 +55,7 @@
- name: Install rabbitmq server - name: Install rabbitmq server
hosts: "{{ rabbitmq_host_group | default('rabbitmq_all') }}" hosts: "{{ rabbitmq_host_group | default('rabbitmq_all') }}"
gather_facts: false
serial: 20% serial: 20%
user: root user: root
roles: roles:
@ -66,6 +74,7 @@
- name: Ensure rabbitmq user for monitoring GUI - name: Ensure rabbitmq user for monitoring GUI
hosts: "{{ rabbitmq_host_group | default('rabbitmq_all') }}[0]" hosts: "{{ rabbitmq_host_group | default('rabbitmq_all') }}[0]"
gather_facts: false
user: root user: root
tasks: tasks:
- name: Create rabbitmq user for monitoring GUI - name: Create rabbitmq user for monitoring GUI

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Setup repo servers - name: Gather repo facts
hosts: repo_all hosts: repo_all
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Setup repo servers
hosts: repo_all
gather_facts: false
user: root user: root
pre_tasks: pre_tasks:
- name: End playbook - name: End playbook

View File

@ -13,9 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install rsyslog - name: Gather rsyslog facts
hosts: rsyslog hosts: rsyslog
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install rsyslog
hosts: rsyslog
gather_facts: false
user: root user: root
pre_tasks: pre_tasks:
# The systemd-journal-remote capability has taken over this functionality. # The systemd-journal-remote capability has taken over this functionality.

View File

@ -17,9 +17,15 @@
# 'apply_security_hardening' boolean set to True for it to apply security # 'apply_security_hardening' boolean set to True for it to apply security
# hardening standards to a system. # hardening standards to a system.
- name: Apply security hardening configurations - name: Gather security hardening facts
hosts: "{{ security_host_group|default('hosts') }}" hosts: "{{ security_host_group|default('hosts') }}"
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Apply security hardening configurations
hosts: "{{ security_host_group|default('hosts') }}"
gather_facts: false
user: root user: root
roles: roles:
- role: "ansible-hardening" - role: "ansible-hardening"

View File

@ -13,10 +13,15 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Install unbound DNS resolvers - name: Gather unbound facts
hosts: hosts: unbound
- unbound
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Install unbound DNS resolvers
hosts: unbound
gather_facts: false
user: root user: root
pre_tasks: pre_tasks:
- include_tasks: common-tasks/os-log-dir-setup.yml - include_tasks: common-tasks/os-log-dir-setup.yml

View File

@ -13,10 +13,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Gather utility facts
hosts: utility_all
gather_facts: "{{ osa_gather_facts | default(True) }}"
tags:
- always
- name: Setup the utility location(s) - name: Setup the utility location(s)
hosts: utility_all hosts: utility_all
user: root user: root
gather_facts: "{{ osa_gather_facts | default(True) }}" gather_facts: false
environment: "{{ deployment_environment_variables | default({}) }}" environment: "{{ deployment_environment_variables | default({}) }}"
vars_files: vars_files:
- "defaults/repo_packages/openstack_services.yml" - "defaults/repo_packages/openstack_services.yml"