summaryrefslogtreecommitdiffstats
path: root/roles/contiv/tasks/netmaster.yml
blob: bb22fb80117e59f7c4fd9474328f8339fb23e4e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
- include_tasks: netmaster_firewalld.yml
  when: contiv_has_firewalld

- include_tasks: netmaster_iptables.yml
  when: not contiv_has_firewalld and contiv_has_iptables

- include_tasks: etcd.yml

- name: Netmaster | Create netmaster symlinks
  file:
    src: "{{ contiv_current_release_directory }}/{{ item }}"
    dest: "{{ contiv_bin_dir }}/{{ item }}"
    state: link
  with_items:
    - netmaster
    - netctl

- name: Netmaster | Copy environment file for netmaster
  template:
    src: netmaster.j2
    dest: /etc/default/netmaster
    mode: 0644
  notify: restart netmaster

- name: Netmaster | Ensure contiv_config_dir exists
  file:
    path: "{{ contiv_config_dir }}"
    recurse: yes
    state: directory

- name: Netmaster | Setup contiv.json config for the cni plugin
  template:
    src: contiv.cfg.master.j2
    dest: "{{ contiv_config_dir }}/contiv.json"
  notify: restart netmaster

- name: Netmaster | Copy systemd units for netmaster
  template:
    src: netmaster.service
    dest: /etc/systemd/system/netmaster.service
  notify: reload systemd

- name: Netmaster | Enable Netmaster
  service:
    name: netmaster
    enabled: yes

- name: Netmaster | Start Netmaster
  service:
    name: netmaster
    state: started
  register: netmaster_started

- include_tasks: aci.yml
  when: contiv_fabric_mode == "aci"

- include_tasks: default_network.yml
  when: contiv_default_network == true

- include_tasks: api_proxy.yml