Start of the CORD configuration
diff --git a/cord-post-install.yml b/cord-post-install.yml
new file mode 100644
index 0000000..a46bfd9
--- /dev/null
+++ b/cord-post-install.yml
@@ -0,0 +1,23 @@
+# Play: Create credentials, set up some basic OpenStack
+- hosts: head
+  sudo: no
+  tasks:
+
+  - shell: uvt-kvm ip keystone
+    register: keystone_ip
+
+  - name: Create credentials
+    template: src=templates/admin-openrc-cord.sh.j2
+     dest={{ ansible_env['PWD'] }}/admin-openrc-cord.sh
+
+  - name: Copy credentials to nova-cloud-controller
+    shell: "scp admin-openrc.sh ubuntu@nova-cloud-controller:"
+
+  - name: Copy network setup script
+    sudo: yes
+    copy: src=scripts/network-setup.sh
+      dest=/usr/local/src/network-setup.sh
+      mode=0644
+
+  - name: Run network setup script
+    shell: ansible nova-cloud-controller -m script -u ubuntu -a "/usr/local/src/network-setup.sh"