Update README.md
diff --git a/README.md b/README.md
index 5bbb91e..64e01aa 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 # opencloud-cluster-setup
-This repository contains [Ansible](http://docs.ansible.com) playbooks for installing and configuring an OpenStack cluster 
+This repository contains [Ansible](http://docs.ansible.com) playbooks for installing and configuring an OpenStack Kilo cluster 
 for use in [OpenCloud](http://guide.opencloud.us).  All of the OpenStack controller services are installed in VMs on a 
 single "head node" and connected by an isolated private network. [Juju](http://www.ubuntu.com/cloud/tools/juju) is used 
 to install and configure the OpenStack services.
@@ -10,16 +10,26 @@
 Here are the basic steps for installing a new OpenCloud cluster named 'foo':
 
 * Install Ubuntu 14.04 LTS on the head and compute nodes.
-* Create *foo-setup.yaml* and *foo-compute.yaml* files using *singapore-setup.yaml* and *singapore-compute.yaml* as templates.  
+* Create *foo-setup.yaml* and *foo-compute.yaml* files using *cloudlab-setup.yaml* and *cloudlab-compute.yaml* as templates.  
+  * Create a *foo-hosts* file with the DNS names of your nodes.
   * Change the *- hosts:* lines as appropriate for your own head and compute nodes.  
-  * Change *opencloud3.sing.internet2.edu* to the DNS name of your head node.
-* On the control machine, run: *$ ansible-playbook foo-setup.yaml*.  This will set up Juju, use it to install the OpenStack services on the head node, and prep the compute nodes.
-* Log into the head node.  For each compute node, put it under control of Juju, e.g.: *$ juju add-machine ssh:ubuntu@compute-1*.
-* On the control machine, run: *$ ansible-playbook foo-compute.yaml* to install the nova-compute service on the compute nodes that were added to Juju.
+  * Change *ctl.install.xos-pg0.clemson.cloudlab.us* in *foo-setup.yaml*  to the DNS name of your head node.
+* To set up Juju, use it to install the OpenStack services on the head node, and prep the compute nodes, run on the head node:
+```
+$ ansible-playbook -i foo-hosts foo-setup.yaml
+```
+* Log into the head node.  For each compute node, put it under control of Juju, e.g.:
+```
+$ juju add-machine ssh:ubuntu@compute-node
+```
+* To install the *nova-compute* service on the compute nodes that were added to Juju, run on the control machine:
+```
+$ ansible-playbook foo-compute.yaml
+```
 
 ## Things to note
 
 * The installation configures port forwarding so that the OpenStack services can be accessed from outside the private network. Some OpenCloud-specific firewalling is also introduced, which will likely require modification for other setups.  See: [files/etc/libvirt/hooks/qemu](https://github.com/andybavier/opencloud-cluster-setup/blob/master/files/etc/libvirt/hooks/qemu).
 * By default the compute nodes are controlled and updated automatically using *ansible-pull* from [this repo](https://github.com/andybavier/opencloud-nova-compute-ansible).  You may want to change this.
-* All of the service interfaces are configured to use SSL because that's what OpenCloud uses in production.  Again, may not be what you want.  Look for the relevant Juju commands in *singapore-setup.yaml*.
+* All of the service interfaces are configured to use SSL because that's what OpenCloud uses in production.  Again, may not be what you want.  Look for the relevant Juju commands in *cloudlab-setup.yaml*.