Add post-deploy tests as an Ansible role

Change-Id: Id033dbf8ef697091459c5ee424d765239e907c01
(cherry picked from commit a27effe0c79ac28da7750b375279557270297076)
diff --git a/cord-post-deploy-playbook.yml b/cord-post-deploy-playbook.yml
new file mode 100644
index 0000000..c1c2395
--- /dev/null
+++ b/cord-post-deploy-playbook.yml
@@ -0,0 +1,16 @@
+---
+# Tests single node cord-pod XOS configuration
+
+- name: Include vars
+  hosts: head
+  tasks:
+  - include_vars: vars/cord_single_defaults.yml
+  - include_vars: vars/cord.yml
+  - include_vars: vars/example_keystone.yml
+
+- name: Run post-deploy test
+  hosts: head
+  become: no
+  roles:
+    - post-deploy-tests
+