kolla-ansible/ansible
Sam Yaple 9a81566d05 Allow the Kolla directory to be configurable
Implements the initial structure for variable substitution in ansible.

Change-Id: I26d82189273be6ebf941b0ab82efc6bf1eebc53d
2015-04-03 09:28:59 -05:00
..
group_vars Allow the Kolla directory to be configurable 2015-04-03 09:28:59 -05:00
inventory Initial commit for adding ansible support 2015-03-28 17:56:21 -05:00
library Add and use ansible module for docker-compose 2015-04-02 11:54:42 -05:00
roles Allow the Kolla directory to be configurable 2015-04-03 09:28:59 -05:00
README.md Allow the Kolla directory to be configurable 2015-04-03 09:28:59 -05:00
site.yml Initial commit for adding ansible support 2015-03-28 17:56:21 -05:00

README.md

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.