netmaster.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. ---
  2. - include_tasks: netmaster_firewalld.yml
  3. when: contiv_has_firewalld
  4. - include_tasks: netmaster_iptables.yml
  5. when: not contiv_has_firewalld and contiv_has_iptables
  6. - include_tasks: etcd.yml
  7. - name: Netmaster | Create netmaster symlinks
  8. file:
  9. src: "{{ contiv_current_release_directory }}/{{ item }}"
  10. dest: "{{ contiv_bin_dir }}/{{ item }}"
  11. state: link
  12. with_items:
  13. - netmaster
  14. - netctl
  15. - name: Netmaster | Copy environment file for netmaster
  16. template:
  17. src: netmaster.j2
  18. dest: /etc/default/netmaster
  19. mode: 0644
  20. notify: restart netmaster
  21. - name: Netmaster | Ensure contiv_config_dir exists
  22. file:
  23. path: "{{ contiv_config_dir }}"
  24. recurse: yes
  25. state: directory
  26. - name: Netmaster | Setup contiv.json config for the cni plugin
  27. template:
  28. src: contiv.cfg.master.j2
  29. dest: "{{ contiv_config_dir }}/contiv.json"
  30. notify: restart netmaster
  31. - name: Netmaster | Copy systemd units for netmaster
  32. template:
  33. src: netmaster.service
  34. dest: /etc/systemd/system/netmaster.service
  35. notify: reload systemd
  36. - name: Netmaster | Flush handlers
  37. meta: flush_handlers
  38. - name: Netmaster | Enable Netmaster
  39. service:
  40. name: netmaster
  41. enabled: yes
  42. - name: Netmaster | Start Netmaster
  43. service:
  44. name: netmaster
  45. state: started
  46. - include_tasks: aci.yml
  47. when: contiv_fabric_mode == "aci"
  48. - include_tasks: default_network.yml
  49. when: contiv_default_network == true
  50. - include_tasks: api_proxy.yml