blob: 3bb9d9be22391c782786be31525d39f037b70f0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
- include_vars: "{{ ansible_os_family }}.yml"
- name: Install ODL Cluster on Controller
include: odl_controller.yml
when: inventory_hostname in groups['odl']
- name: Install ODL Cluster on Compute
include: openvswitch.yml
when: groups['odl']|length !=0 and inventory_hostname not in groups['odl']
- name: Wait 5 minutes after odl deployment
shell: sleep 300
when: groups['odl']|length !=0
|