0e00ad2188
kolla is mandatory to run a version of docker-compose that includes pid: host support.docker-compose 1.3.0 to include the necessary features. docker-compose 1.3.0 project.up() abandoned the parameters detach and use allow_recreate replace recreate parameters. closes-Bug: #1458116 Change-Id: I1235da58db5bedf208ebaea2a54568964dc802f8 |
||
---|---|---|
.. | ||
group_vars | ||
inventory | ||
library | ||
roles | ||
README.md | ||
site.yml |
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.