enable_dnsmasq.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. - name: Reconfigure masters to listen on our new dns_port
  8. hosts: oo_masters_to_config
  9. handlers:
  10. - include: ../../../roles/openshift_master/handlers/main.yml
  11. static: yes
  12. vars:
  13. os_firewall_allow:
  14. - service: skydns tcp
  15. port: "{{ openshift.master.dns_port }}/tcp"
  16. - service: skydns udp
  17. port: "{{ openshift.master.dns_port }}/udp"
  18. roles:
  19. - os_firewall
  20. tasks:
  21. - openshift_facts:
  22. role: "{{ item.role }}"
  23. local_facts: "{{ item.local_facts }}"
  24. with_items:
  25. - role: master
  26. local_facts:
  27. dns_port: '8053'
  28. - modify_yaml:
  29. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  30. yaml_key: dnsConfig.bindAddress
  31. yaml_value: "{{ openshift.master.bind_addr }}:{{ openshift.master.dns_port }}"
  32. notify: restart master api
  33. - meta: flush_handlers
  34. - name: Configure nodes for dnsmasq
  35. hosts: oo_nodes_to_config
  36. handlers:
  37. - include: ../../../roles/openshift_node/handlers/main.yml
  38. static: yes
  39. pre_tasks:
  40. - openshift_facts:
  41. role: "{{ item.role }}"
  42. local_facts: "{{ item.local_facts }}"
  43. with_items:
  44. - role: node
  45. local_facts:
  46. dns_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
  47. roles:
  48. - openshift_node_dnsmasq
  49. post_tasks:
  50. - modify_yaml:
  51. dest: "{{ openshift.common.config_base }}/node/node-config.yaml"
  52. yaml_key: dnsIP
  53. yaml_value: "{{ openshift.node.dns_ip }}"
  54. notify: restart node