enable_dnsmasq.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ---
  2. - include: evaluate_groups.yml
  3. - name: Load openshift_facts
  4. hosts: oo_masters_to_config:oo_nodes_to_config
  5. roles:
  6. - openshift_facts
  7. post_tasks:
  8. - fail: msg="This playbook requires a master version of at least Origin 1.1 or OSE 3.1"
  9. when: not openshift.common.version_gte_3_1_1_or_1_1_1 | bool
  10. - name: Reconfigure masters to listen on our new dns_port
  11. hosts: oo_masters_to_config
  12. handlers:
  13. - include: ../../../roles/openshift_master/handlers/main.yml
  14. static: yes
  15. vars:
  16. os_firewall_allow:
  17. - service: skydns tcp
  18. port: "{{ openshift.master.dns_port }}/tcp"
  19. - service: skydns udp
  20. port: "{{ openshift.master.dns_port }}/udp"
  21. roles:
  22. - os_firewall
  23. tasks:
  24. - openshift_facts:
  25. role: "{{ item.role }}"
  26. local_facts: "{{ item.local_facts }}"
  27. with_items:
  28. - role: master
  29. local_facts:
  30. dns_port: '8053'
  31. - modify_yaml:
  32. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  33. yaml_key: dnsConfig.bindAddress
  34. yaml_value: "{{ openshift.master.bind_addr }}:{{ openshift.master.dns_port }}"
  35. notify: restart master api
  36. - meta: flush_handlers
  37. - name: Configure nodes for dnsmasq
  38. hosts: oo_nodes_to_config
  39. handlers:
  40. - include: ../../../roles/openshift_node/handlers/main.yml
  41. static: yes
  42. pre_tasks:
  43. - openshift_facts:
  44. role: "{{ item.role }}"
  45. local_facts: "{{ item.local_facts }}"
  46. with_items:
  47. - role: node
  48. local_facts:
  49. dns_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
  50. roles:
  51. - openshift_node_dnsmasq
  52. post_tasks:
  53. - modify_yaml:
  54. dest: "{{ openshift.common.config_base }}/node/node-config.yaml"
  55. yaml_key: dnsIP
  56. yaml_value: "{{ openshift.node.dns_ip }}"
  57. notify: restart node