main.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. # this file is copied to /etc/dnsmasq.d/ when the node starts and is removed
  15. # when the node stops. A dbus-message is sent to dnsmasq to add the same entries
  16. # so that dnsmasq doesn't need to be restarted. Once we can use dnsmasq 2.77 or
  17. # newer we can use --server-file option to update the servers dynamically and
  18. # reload them by sending dnsmasq a SIGHUP. We write the file in case someone else
  19. # triggers a restart of dnsmasq but not a node restart.
  20. - name: Install node-dnsmasq.conf
  21. template:
  22. src: node-dnsmasq.conf.j2
  23. dest: /etc/origin/node/node-dnsmasq.conf
  24. - name: Install dnsmasq configuration
  25. template:
  26. src: origin-dns.conf.j2
  27. dest: /etc/dnsmasq.d/origin-dns.conf
  28. notify: restart dnsmasq
  29. - name: Deploy additional dnsmasq.conf
  30. template:
  31. src: "{{ openshift_node_dnsmasq_additional_config_file }}"
  32. dest: /etc/dnsmasq.d/openshift-ansible.conf
  33. owner: root
  34. group: root
  35. mode: 0644
  36. when: openshift_node_dnsmasq_additional_config_file is defined
  37. notify: restart dnsmasq
  38. - name: Enable dnsmasq
  39. systemd:
  40. name: dnsmasq
  41. enabled: yes
  42. state: started
  43. # Dynamic NetworkManager based dispatcher
  44. - include: ./network-manager.yml
  45. when: network_manager_active | bool
  46. # Relies on ansible in order to configure static config
  47. - include: ./no-network-manager.yml
  48. when: not network_manager_active | bool