CORD-1081 corebuilder playbooks

Change-Id: I1d9d03d57d096ae1ee439ca5c37d854abfa4f4cf
diff --git a/build-platform-install-playbook.yml b/build-platform-install-playbook.yml
new file mode 100644
index 0000000..8466693
--- /dev/null
+++ b/build-platform-install-playbook.yml
@@ -0,0 +1,18 @@
+---
+# build-platform-install-playbook.yml
+
+- name: Include vars
+  hosts: localhost
+  tasks:
+    - name: Include variables
+      include_vars: "{{ item }}"
+      with_items:
+        - "profile_manifests/{{ cord_profile }}.yml"
+        - profile_manifests/local_vars.yml
+
+- name: Build the core image
+  hosts: localhost
+  roles:
+    - xos-core-build
+
+