aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/odl_cluster/tasks/main.yml
blob: 5c6805c09ae79349f94164ee64a08b00479c2bff (plain)
1
2
3
4
5
6
7
8
9
10
---
- include_vars: "{{ ansible_os_family }}.yml"

- name: Install ODL Cluster on Controller
  include: main_controller.yml
  when: inventory_hostname in groups['controller']

- name: Install ODL Cluster on Compute
  include: main_compute.yml
  when: groups['odl']|length !=0 and inventory_hostname not in groups['odl']