main.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ---
  2. - name: Check for NetworkManager service
  3. command: >
  4. systemctl show NetworkManager
  5. register: nm_show
  6. changed_when: false
  7. ignore_errors: True
  8. - name: Set fact using_network_manager
  9. set_fact:
  10. network_manager_active: "{{ True if 'ActiveState=active' in nm_show.stdout else False }}"
  11. - name: Install dnsmasq
  12. package: name=dnsmasq state=installed
  13. when: not openshift.common.is_atomic | bool
  14. - name: ensure origin/node directory exists
  15. file:
  16. state: directory
  17. path: "{{ item }}"
  18. owner: root
  19. group: root
  20. mode: '0700'
  21. with_items:
  22. - /etc/origin
  23. - /etc/origin/node
  24. # this file is copied to /etc/dnsmasq.d/ when the node starts and is removed
  25. # when the node stops. A dbus-message is sent to dnsmasq to add the same entries
  26. # so that dnsmasq doesn't need to be restarted. Once we can use dnsmasq 2.77 or
  27. # newer we can use --server-file option to update the servers dynamically and
  28. # reload them by sending dnsmasq a SIGHUP. We write the file in case someone else
  29. # triggers a restart of dnsmasq but not a node restart.
  30. - name: Install node-dnsmasq.conf
  31. template:
  32. src: node-dnsmasq.conf.j2
  33. dest: /etc/origin/node/node-dnsmasq.conf
  34. - name: Install dnsmasq configuration
  35. template:
  36. src: origin-dns.conf.j2
  37. dest: /etc/dnsmasq.d/origin-dns.conf
  38. notify: restart dnsmasq
  39. - name: Deploy additional dnsmasq.conf
  40. template:
  41. src: "{{ openshift_node_dnsmasq_additional_config_file }}"
  42. dest: /etc/dnsmasq.d/openshift-ansible.conf
  43. owner: root
  44. group: root
  45. mode: 0644
  46. when: openshift_node_dnsmasq_additional_config_file is defined
  47. notify: restart dnsmasq
  48. - name: Enable dnsmasq
  49. systemd:
  50. name: dnsmasq
  51. enabled: yes
  52. state: started
  53. # Dynamic NetworkManager based dispatcher
  54. - include_tasks: ./network-manager.yml
  55. when: network_manager_active | bool
  56. # Relies on ansible in order to configure static config
  57. - include_tasks: ./no-network-manager.yml
  58. when: not network_manager_active | bool