blob: c8512c45ac5b466ef46a4b2086c78604eb537dda [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
7
8- name: Prerequisites
9 hosts: head
10 sudo: yes
11 roles:
12 - prereqs
13
14- name: Local Environment
15 hosts: head
16 roles:
17 - local_environment
18
19- name: Download images
20 hosts: head
21 roles:
22 - download_images
23
24- name: Build Config
25 hosts: head
26 roles:
27 - buildconfig
28
29- name: Bootstrap
30 hosts: head
31 roles:
32 - bootstrap
33
34- name: Onboarding
35 hosts: head
36 roles:
37 - onboarding
38
39- name: Configuration
40 hosts: head
41 roles:
42 - config
43 tags:
44 - config
45