kolla/compose
Harm Weites 76c5d9a6c8 Add the Designate DNSaaS services.
This is a complete DNS solution, with hidden master and bind9 slave.

It lacks the designate-sink service, because there is no true specification
to implement that. It listens for Nova/Neutron events and creates records
though adding those to just 1 domain isn't helping much in an environment
with multiple tenants.

Change-Id: I500fb6058b118d25a4ccfd1d3479830c36af7e2a
Blueprint: designate-container
2015-06-05 21:06:06 +02:00
..
README.md Consolidate tools/conf-* scripts in tools/init-runonce 2015-04-28 12:15:42 +09:00
designate.yml Add the Designate DNSaaS services. 2015-06-05 21:06:06 +02:00
glance-api-registry.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
heat-api-cfn.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-agents.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09: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 Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
nova-compute.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00
rabbitmq.yml Set release tag to 'latest' for development branch 2015-05-12 13:18:09 +09:00

README.md

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>