blob: 7b923613e49ecdd1b0d9c5bc468626285a14e173 [file] [log] [blame]
Scott Bakerf93a06c2016-07-11 17:04:49 -07001---
2
3- name: Include vars
4 hosts: head
5 tasks:
6 - include_vars: vars/cord-pod_defaults.yml
Scott Baker2465f452016-07-19 14:23:28 -07007 - include_vars: vars/cord-stack_defaults.yml
Scott Bakerf93a06c2016-07-11 17:04:49 -07008
9- name: Prerequisites
10 hosts: head
11 sudo: yes
12 roles:
13 - prereqs
14
15- name: Local Environment
16 hosts: head
17 roles:
18 - local_environment
19
20- name: Download images
21 hosts: head
22 roles:
23 - download_images
24
25- name: Build Config
26 hosts: head
27 roles:
28 - buildconfig
29
30- name: Bootstrap
31 hosts: head
32 roles:
33 - bootstrap
34
35- name: Onboarding
36 hosts: head
37 roles:
38 - onboarding
39
40- name: Configuration
41 hosts: head
42 roles:
43 - config
44 tags:
45 - config
46