blob: 9039fe153959abe53eff09ef3fcfa71d633d4bd7 [file] [log] [blame]
Andy Bavierc2335122016-06-25 09:59:22 -04001---
2# onos-load-apps/tasks/main.yml
3#
4# Install CORD ONOS apps from local containers
5
6- name: Disable loading from Maven repo
7 command: ansible xos-1 -u ubuntu -m lineinfile \
Scott Baker333a3152016-06-29 08:58:42 -07008 -a "dest=~/service-profile/{{ xos_configuration }}/make-vtn-external-yaml.sh state=absent regexp='install_dependencies'"
Andy Bavierc2335122016-06-25 09:59:22 -04009
10- name: Load the apps using Docker
11 command: ansible xos-1 -u ubuntu -m shell \
12 -a "cd ~/xos/containers/cord-apps; make {{ item }}; docker run xosproject/cord-app-{{ item }}"
Andy Bavierc2977cf2016-06-25 11:16:23 -040013 with_items: "{{ cord_apps }}"