blob: 19cd9506ef2b6a6af8277e9afb26a1633d8c1eb7 [file] [log] [blame]
Zack Williamsadaa70c2017-07-17 09:54:43 -07001---
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