Role os_cloudkitty for OpenStack-Ansible
Go to file
Andy McCrae b4a7dd32aa Fix gitreview and tox requirements to use stable/ocata
Change-Id: I128d94c731939b0d6b2ccdfd7095830f602ee687
2017-02-09 13:46:01 +00:00
defaults Update repo for stable/ocata 2017-02-08 11:08:13 +00:00
doc Use https instead of http for git.openstack.org 2017-02-06 17:20:18 +07:00
extras update naming conventions for secret vars 2016-11-18 16:42:48 +01:00
handlers Phase out trusty and use systemd 2017-01-20 12:53:06 +00:00
meta Use updated get_url module checksum functionality 2016-11-07 17:46:09 +00:00
releasenotes Use https instead of http for git.openstack.org 2017-02-06 17:20:18 +07:00
tasks Phase out trusty and use systemd 2017-01-20 12:53:06 +00:00
templates Phase out trusty and use systemd 2017-01-20 12:53:06 +00:00
tests Update repo for stable/ocata 2017-02-08 11:08:13 +00:00
vars Rename package lists (and related vars) appropriately 2016-08-30 16:59:49 +01:00
.gitignore Ansible 2.1.1 role testing 2016-09-19 16:15:45 -04:00
.gitreview Fix gitreview and tox requirements to use stable/ocata 2017-02-09 13:46:01 +00:00
CONTRIBUTING.rst Implement base configuration for OpenStack-CI 2016-07-01 09:35:24 -07:00
LICENSE Implement base configuration for OpenStack-CI 2016-07-01 09:35:24 -07:00
README.rst Show team and repo badges on README 2016-11-25 16:29:53 +01:00
Vagrantfile Implement base configuration for OpenStack-CI 2016-07-01 09:35:24 -07:00
bindep.txt Compress test execution logs 2016-09-09 10:30:35 +01:00
manual-test.rc Use centralised test scripts 2016-09-27 18:01:18 +00:00
run_tests.sh Update and clean up run_tests.sh 2017-01-06 16:53:29 +00:00
setup.cfg modify the home-page info with the developer documentation 2016-09-20 13:06:44 +05:30
setup.py Updated from global requirements 2016-07-15 03:57:44 +00:00
test-requirements.txt Updated from global requirements 2016-12-02 05:10:42 +00:00
tox.ini Fix gitreview and tox requirements to use stable/ocata 2017-02-09 13:46:01 +00:00

README.rst

Team and repository tags

image

OpenStack-Ansible CloudKitty

tags

openstack, cloudkitty, cloud, ansible

category

*nix

This Ansible role installs and configures OpenStack cloudkitty.

This role will install the following Upstart services:
  • cloudkitty-api
  • cloudkitty-processor

Required Variables

cloudkitty_service_password
cloudkitty_rabbitmq_password
cloudkitty_container_mysql_password
cloudkitty_galera_address

Example Playbook

- name: Install cloudkitty server
  hosts: cloudkitty_all
  user: root
  roles:
    - { role: "os_cloudkitty", tags: [ "os-cloudkitty" ] }
  vars:
    external_lb_vip_address: 172.16.24.1
    internal_lb_vip_address: 192.168.0.1
    cloudkitty_galera_address: "{{ internal_lb_vip_address }}"
    cloudkitty_container_mysql_password: "SuperSecretePassword1"
    cloudkitty_service_password: "SuperSecretePassword2"
    cloudkitty_rabbitmq_password: "SuperSecretePassword3"