CORD-912
OpenCloud support

Change-Id: I170597cacd76c84c795a7bf4c8e77e068ebcd72a
diff --git a/start-xos-playbook.yml b/start-xos-playbook.yml
new file mode 100644
index 0000000..1ae0aff
--- /dev/null
+++ b/start-xos-playbook.yml
@@ -0,0 +1,18 @@
+---
+# start-xos-playbook.yml
+# Start and configure XOS docker containers
+
+- name: Include vars
+  hosts: all
+  tasks:
+    - name: Include variables
+      include_vars: "{{ item }}"
+      with_items:
+        - "profile_manifests/{{ cord_profile }}.yml"
+        - profile_manifests/local_vars.yml
+
+- name: Start XOS containers with docker-compose
+  hosts: head
+  roles:
+    - xos-up
+