- name: Common setup procedures hosts: ands roles: - role: ands_facts - name: Temporary provision /etc/hosts with Masters IP. hosts: nodes:!masters tasks: - lineinfile: dest="/etc/hosts" line="{{ ands_openshift_network | ipaddr(node_id) | ipaddr('address') }} {{ ands_openshift_lb }}" regexp=".*{{ ands_openshift_lb }}$" state="present" when: (ands_provision_without_dns | default(false)) vars: node_id: "{{ hostvars[groups['masters'][0]]['ands_host_id'] }}" - name: Various OpenShift resources hosts: nodes roles: - role: ands_openshift - name: Remove temporary entries in /etc/hosts hosts: nodes:!masters tasks: - lineinfile: dest="/etc/hosts" regexp=".*{{ ands_openshift_lb }}$" state="absent" when: (ands_provision_without_dns | default(false)) - name: OpenVPN service hosts: nodes roles: - role: openvpn vars: openvpn_config: "katrin" openvpn_lb: "{{ ands_openshift_lb }}" openvpn_servers: "masters"