Zack Williams | adaa70c | 2017-07-17 09:54:43 -0700 | [diff] [blame] | 1 | --- |
2 | # deploy-mavenrepo-playbook.yml | ||||
3 | # Deploys mavenrepo in Docker container on the CORD head node | ||||
4 | |||||
5 | - name: Include vars | ||||
6 | hosts: head | ||||
7 | tasks: | ||||
8 | - name: Include variables | ||||
9 | include_vars: "{{ item }}" | ||||
10 | with_items: | ||||
11 | - "profile_manifests/{{ cord_profile }}.yml" | ||||
12 | - profile_manifests/local_vars.yml | ||||
13 | |||||
14 | - name: Deploy and start mavenrepo | ||||
15 | hosts: head | ||||
16 | roles: | ||||
17 | - mavenrepo-install | ||||
18 | |||||
19 | |||||
20 |