blob: 07bf7084d1947bda444db398dcffd233dbbc3066 (
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
|
---
- include_vars: "{{ ansible_os_family }}.yml"
- include_vars: "{{ openstack_passwd_file }}"
- include: odl-pre.yml
when: inventory_hostname == "localhost"
- include_vars: /tmp/odl-extra-vars.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 == groups['repo_container'][0]
- include: control-servers-1.yml
when: inventory_hostname in groups['neutron_server']
- include: control-utility-1.yml
when:
- inventory_hostname in groups['utility']
- odl_sfc == "Enable"
- 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
|