ansible profile
Change-Id: I6c577b6852b4b53812c4ddca6dc83b042caefe30
diff --git a/cord-pod-ansible/cord-pod-playbook.yaml b/cord-pod-ansible/cord-pod-playbook.yaml
new file mode 100644
index 0000000..c8512c4
--- /dev/null
+++ b/cord-pod-ansible/cord-pod-playbook.yaml
@@ -0,0 +1,45 @@
+---
+
+- name: Include vars
+ hosts: head
+ tasks:
+ - include_vars: vars/cord-pod_defaults.yml
+
+- name: Prerequisites
+ hosts: head
+ sudo: yes
+ roles:
+ - prereqs
+
+- name: Local Environment
+ hosts: head
+ roles:
+ - local_environment
+
+- name: Download images
+ hosts: head
+ roles:
+ - download_images
+
+- name: Build Config
+ hosts: head
+ roles:
+ - buildconfig
+
+- name: Bootstrap
+ hosts: head
+ roles:
+ - bootstrap
+
+- name: Onboarding
+ hosts: head
+ roles:
+ - onboarding
+
+- name: Configuration
+ hosts: head
+ roles:
+ - config
+ tags:
+ - config
+