blob: 67ff1b4bf3d9cc589feffacab12b74141d7e0096 [file] [log] [blame]
Andy Bavier12262e72016-12-02 11:36:57 -05001---
Zack Williamsa2763112017-01-03 11:38:38 -07002# deploy-onos-playbook.yml
Andy Bavier12262e72016-12-02 11:36:57 -05003# Deploys ONOS in Docker containers on the CORD head node
4
5- name: Include vars
6 hosts: all
7 tasks:
8 - name: Include variables
9 include_vars: "{{ item }}"
10 with_items:
Zack Williamsa2763112017-01-03 11:38:38 -070011 - "profile_manifests/{{ cord_profile }}.yml"
12 - profile_manifests/local_vars.yml
Andy Bavier12262e72016-12-02 11:36:57 -050013
14- name: Deploy and start ONOS containers
15 hosts: head
16 roles:
17 - onos-cord-install
18 - onos-fabric-install
Zack Williamsa2763112017-01-03 11:38:38 -070019