--- - hosts: cluster_hosts name: Wait for the the nodes to come up become: False gather_facts: False tasks: - when: not openstack_use_bastion|default(False)|bool wait_for_connection: - when: openstack_use_bastion|default(False)|bool delegate_to: bastion wait_for_connection: - hosts: cluster_hosts gather_facts: True tasks: - name: Debug hostvar debug: msg: "{{ hostvars[inventory_hostname] }}" verbosity: 2 - name: OpenShift Pre-Requisites (part 1) include: pre-install.yml - name: Assign hostnames hosts: cluster_hosts gather_facts: False become: true roles: - role: hostnames - name: Subscribe DNS Host to allow for configuration below hosts: dns gather_facts: False become: true roles: - role: subscription-manager when: hostvars.localhost.rhsm_register|default(False) tags: 'subscription-manager' - name: Determine which DNS server(s) to use for our generated records hosts: localhost gather_facts: False become: False roles: - dns-server-detect - name: Build the DNS Server Views and Configure DNS Server(s) hosts: dns gather_facts: False become: true roles: - role: dns-views - role: infra-ansible/roles/dns-server - name: Build and process DNS Records hosts: localhost gather_facts: True become: False roles: - role: dns-records - role: infra-ansible/roles/dns - name: Switch the stack subnet to the configured private DNS server hosts: localhost gather_facts: False become: False vars_files: - stack_params.yaml tasks: - include_role: name: openstack-stack tasks_from: subnet_update_dns_servers - name: OpenShift Pre-Requisites (part 2) hosts: OSEv3 gather_facts: true become: true pre_tasks: - name: "Include DNS configuration to ensure proper name resolution" lineinfile: state: present dest: /etc/sysconfig/network regexp: "IP4_NAMESERVERS={{ hostvars['localhost'].private_dns_server }}" line: "IP4_NAMESERVERS={{ hostvars['localhost'].private_dns_server }}" roles: - node-network-manager - include: prepare-and-format-cinder-volume.yaml when: prepare_and_format_registry_volume|default(False)