aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/odl_cluster/roles/odl_cluster/tasks/main.yml
blob: 443590568968d464203302822d97b99e7685075a (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
---

- include_vars: "{{ ansible_os_family }}.yml"

- include: control-hosts-1.yml
  when: inventory_hostname in groups['network_hosts']     # Todo: modify to odl_hosts

- include: control-repos-1.yml
  vars:
    odl_pip: "{{ networking_odl_url }}"
  when: inventory_hostname in groups['repo_container']

- include: control-servers-1.yml
  when: inventory_hostname in groups['neutron_server']

- include: control-agents-1.yml
  when: inventory_hostname in groups['neutron_openvswitch_agent']

- include: control-hosts-2.yml
  when: inventory_hostname in groups['network_hosts']     # Todo: modify to odl_hosts

- include: control-agents-2.yml
  when: inventory_hostname in groups['neutron_openvswitch_agent']

- include: control-servers-2.yml
  when: inventory_hostname in groups['neutron_server']

- include: control-agents-3.yml
  when: inventory_hostname in groups['neutron_openvswitch_agent']

- include: control-db-1.yml
  when: inventory_hostname == groups['galera_container'][0]

- include: control-servers-3.yml
  when:
    - inventory_hostname in groups['neutron_server'][0]
    - inventory_hostname not in groups['network_hosts']

- include: odl-post.yml