summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2015-09-15 10:21:09 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2015-09-16 14:55:44 +0000
commit7d781a4540fad3e3cf25829eef44aeb4aa3bcc60 (patch)
tree0658530aa5f115a0a22ec8f5e594b8639717d1af
parent18aac91ea1633269c97adbf01f9276cb0bcf0e2c (diff)
downloadciat-tester-7d781a4540fad3e3cf25829eef44aeb4aa3bcc60.tar.gz
Improve documentation.
-rw-r--r--openstack/README24
1 files changed, 23 insertions, 1 deletions
diff --git a/openstack/README b/openstack/README
index 6faa4e0..d066b2b 100644
--- a/openstack/README
+++ b/openstack/README
@@ -10,4 +10,26 @@ the config section of `do-tests.sh`. Specifically you need to set
up the flavour and network ID to use.
Currently the openstack script assumes that there are floating ips
-available.
+available. It also assumes that the default security group allows
+SSH access.
+
+This script also assumes that the test image's root user's
+authorized_keys contains the id_rsa.pub from the machine/user
+on which you are running CIAT-Tester.
+
+
+Configuring an openstack host
+-----------------------------
+
+Your openstack host may need some configuration.
+
+### Networking
+
+The following commands may be of use to set up a network.
+
+ neutron net-create test-net
+ neutron subnet-create --name test-subnet --gateway 192.168.1.1 \
+ test-net 192.168.1.0/24
+ neutron router-create test-router
+ neutron router-interface-add test-router test-subnet
+ neutron router-gateway-set test-router ext-net