kolla/ansible
Fang Fenghua 5a1b0008f2 Add auth role to ansible
Add a auth role so ansible can deploy
keystone.

Change-Id: I3f41fe150654451aae6271cce59ddeb807945043
2015-05-05 19:08:47 +00:00
..
group_vars Allow the Kolla directory to be configurable 2015-04-03 09:28:59 -05:00
inventory Add auth role to ansible 2015-05-05 19:08:47 +00:00
library Add and use ansible module for docker-compose 2015-04-02 11:54:42 -05:00
roles Add auth role to ansible 2015-05-05 19:08:47 +00:00
README.md Allow the Kolla directory to be configurable 2015-04-03 09:28:59 -05:00
site.yml Add auth role to ansible 2015-05-05 19:08:47 +00:00

Koalla - Kolla with ansible!

Koalla extends the Kolla project past TripleO into its own bonified deployment system using Ansible and docker-compose.

Getting Started

To run the ansible playbooks, you must specify an inventory file which tracks all of the available nodes in your environment. With this inventory file ansible will log into each node via ssh (configurable) and run tasks. Ansible does not require password less logins via ssh, however it is highly recommended to setup ssh-keys. More information on the ansible inventory file can be found here.

Deploying

You can adjust variables for your environment in the file: "./kolla/ansible/group_vars/all.yml"

For All-In-One deploys, you can run the following commands. These will setup all of the containers on your localhost.

cd ./kolla/ansible
ansible-playbook -i inventory/all-in-one site.yml

To run the playbooks for only a particular service, you can us ansible tags. Multiple tags may be specified, and order is still determined by the playbooks.

cd ./kolla/ansible
ansible-playbook -i inventory/all-in-one site.yml --tags message-broker
ansible-playbook -i inventory/all-in-one site.yml --tags message-broker,database

Further Reading

Ansible playbook documentation can be found here.