Cleanups to Vagrant documentation and scripts

Fix some spelling errors in the scripts and the Vagrant documentation.
Also, add a note about creating the default subnetpool in the Vagrant
documentation.

Change-Id: I13454328d7b4372d6773661b006466f3419c4fe0
Signed-off-by: Kyle Mestery <mestery@mestery.com>
This commit is contained in:
Kyle Mestery 2015-11-20 10:09:50 -06:00
parent b2e113741a
commit 99897cc1cc
3 changed files with 5 additions and 3 deletions

View File

@ -2,7 +2,7 @@
kuryr kuryr
=============================== ===============================
Docker for Openstack Neutron Docker for OpenStack Neutron
Kuryr is a Docker network plugin that uses Neutron to provide networking Kuryr is a Docker network plugin that uses Neutron to provide networking
services to Docker containers. It provides containerised images for the services to Docker containers. It provides containerised images for the

View File

@ -3,7 +3,7 @@ vagrant-devstack-Kuryr
A Vagrant based kuryr,neutron,keystone and experimental docker system. A Vagrant based kuryr,neutron,keystone and experimental docker system.
Steps to try vagrant image: Steps to try vagrant image:
1. Intall virtual-box and vagrant on your local machine. 1. Install virtual-box and vagrant on your local machine.
2. Git clone kuryr repository. 2. Git clone kuryr repository.
3. cd kuryr/contrib/vagrant 3. cd kuryr/contrib/vagrant
4. vagrant up 4. vagrant up
@ -12,6 +12,8 @@ Steps to try vagrant image:
You will get vm shell with keystone and neutron already running. You will get vm shell with keystone and neutron already running.
6. cd kuryr && ./scripts/run_kuryr.sh & 6. cd kuryr && ./scripts/run_kuryr.sh &
Kuryr service will be up and listening on port 2377. Kuryr service will be up and listening on port 2377.
7. Create the default kuryr subnetpool:
neutron subnetpool-create --default-prefixlen 24 --pool-prefix 10.10.0.0/16 kuryr
At this point you should have experimental docker, kuryr, neutron, keystone At this point you should have experimental docker, kuryr, neutron, keystone
all up, running and pointing to each other. Any docker network related commands all up, running and pointing to each other. Any docker network related commands

View File

@ -27,7 +27,7 @@ if [[ ! -d "${KURYR_JSON_DIR}" ]]; then
fi fi
if [[ ! -f "${KURYR_JSON}" ]]; then if [[ ! -f "${KURYR_JSON}" ]]; then
echo -n "${KURYR_JSON} is missing. Copyting the default one... " echo -n "${KURYR_JSON} is missing. Copying the default one... "
sudo cp ${KURYR_DEFAULT_JSON} ${KURYR_JSON} sudo cp ${KURYR_DEFAULT_JSON} ${KURYR_JSON}
echo "Done" echo "Done"
fi fi