enable_dnsmasq.yml 1.6 KB

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