enable_dnsmasq.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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: common
  29. local_facts:
  30. use_dnsmasq: True
  31. - role: master
  32. local_facts:
  33. dns_port: '8053'
  34. - modify_yaml:
  35. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  36. yaml_key: dnsConfig.bindAddress
  37. yaml_value: "{{ openshift.master.bind_addr }}:{{ openshift.master.dns_port }}"
  38. notify: restart master
  39. - meta: flush_handlers
  40. - name: Configure nodes for dnsmasq
  41. hosts: oo_nodes_to_config
  42. handlers:
  43. - include: ../../../roles/openshift_node/handlers/main.yml
  44. static: yes
  45. pre_tasks:
  46. - openshift_facts:
  47. role: "{{ item.role }}"
  48. local_facts: "{{ item.local_facts }}"
  49. with_items:
  50. - role: common
  51. local_facts:
  52. use_dnsmasq: True
  53. - role: node
  54. local_facts:
  55. dns_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
  56. vars:
  57. openshift_deployment_type: "{{ deployment_type }}"
  58. roles:
  59. - openshift_node_dnsmasq
  60. post_tasks:
  61. - modify_yaml:
  62. dest: "{{ openshift.common.config_base }}/node/node-config.yaml"
  63. yaml_key: dnsIP
  64. yaml_value: "{{ openshift.node.dns_ip }}"
  65. notify: restart node