enable_dnsmasq.yml 517 B

1234567891011121314151617181920
  1. ---
  2. - include: ../../common/openshift-cluster/verify_ansible_version.yml
  3. - hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. tasks:
  8. - include_vars: ../../byo/openshift-cluster/cluster_hosts.yml
  9. - add_host:
  10. name: "{{ item }}"
  11. groups: l_oo_all_hosts
  12. with_items: "{{ g_all_hosts | default([]) }}"
  13. - hosts: l_oo_all_hosts
  14. gather_facts: no
  15. tasks:
  16. - include_vars: ../../byo/openshift-cluster/cluster_hosts.yml
  17. - include: ../../common/openshift-cluster/enable_dnsmasq.yml