kolla-ansible/compose
Sam Yaple 98460af04d Change fat neutron container into thin containers
Key difference here is the ip_wrapper.py file. This file and docker 1.7
allow for the network namespaces to be created in the host mount
namespace and propogated into the containers.

Co-Authored-By: Paul Bourke <paul.bourke@oracle.com>
Change-Id: I73bcd1c97bbaf742af883dbf281a8d76aff8aebf
2015-06-24 14:41:23 +00:00
..
cinder-api-scheduler.yml Add cinder into the docker compose setup 2015-06-19 13:15:48 -04:00
cinder-backup.yml Add cinder into the docker compose setup 2015-06-19 13:15:48 -04:00
cinder-volume.yml Add cinder into the docker compose setup 2015-06-19 13:15:48 -04:00
designate.yml Add designate-sink service 2015-06-19 17:08:47 +02:00
galeradb.yml Galera container 2015-06-19 16:14:34 +02:00
glance-api-registry.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
heat-api-engine.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
horizon.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
keystone.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
magnum-api-conductor.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
mariadb.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
neutron-dhcp-agent.yml Change fat neutron container into thin containers 2015-06-24 14:41:23 +00:00
neutron-l3-agent.yml Change fat neutron container into thin containers 2015-06-24 14:41:23 +00:00
neutron-linuxbridge-agent.yml Change fat neutron container into thin containers 2015-06-24 14:41:23 +00:00
neutron-metadata-agent.yml Change fat neutron container into thin containers 2015-06-24 14:41:23 +00:00
neutron-server.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
nova-api-compute-network.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
nova-api-conductor-scheduler-consoleauth-novncproxy.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
nova-compute-network.yml Add cinder into the docker compose setup 2015-06-19 13:15:48 -04:00
nova-compute.yml Add cinder into the docker compose setup 2015-06-19 13:15:48 -04:00
rabbitmq.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
README.md Consolidate tools/conf-* scripts in tools/init-runonce 2015-04-28 12:15:42 +09:00

Docker compose

These scripts and docker compose files can be used to stand up a simple installation of openstack. Running the 'tools/genenv' script creates an 'openstack.env' suitable for running on a single host system as well as an 'openrc' to allow access to the installation.

Once you have run that you can either manually start the containers using the 'docker-compose' command or try the 'tools/kolla start' script which tries to start them all in a reasonable order, waiting at key points for services to become available. Once stood up you can issue the typical openstack commands to use the installation. If using nova networking use:

# source openrc
# tools/init-runonce
# nova boot --flavor m1.medium --key_name mykey --image puffy_clouds instance_name
# ssh cirros@<ip>

Else if using neutron networking use:

# source openrc
# tools/init-runonce
# nova boot --flavor m1.medium --key_name mykey --image puffy_clouds instance_name --nic net-id:<net id>
# ssh cirros@<ip>