Role os_cloudkitty for OpenStack-Ansible
Go to file
Kevin Carter 1f497eba94 Disable stderr logging
OSLO logging currently defaults the 'use_stderr' option to True
which results duplicate logs in service daemon logs for both
upstart and systemd. To correct this issue the use_stderr
option has been set to false.

Change-Id: I177bcd724433543cb39bce7bce19f43a5675d492
Closes-Bug: 1588051
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2016-08-04 17:42:26 +00:00
defaults Add project group to role 2016-08-04 05:10:37 +01:00
doc Update sphinx configuration 2016-07-12 16:52:21 +01:00
extras Adding the extras and tests with updated readme 2016-05-19 22:21:55 -05:00
handlers first commit 2016-05-08 12:03:41 -05:00
meta Implement Multi-OS support in os_cloudkitty 2016-08-02 08:07:58 +00:00
releasenotes Add ability to change apt/yum package state 2016-08-02 21:56:04 +00:00
tasks Add ability to change apt/yum package state 2016-08-02 21:56:04 +00:00
templates Disable stderr logging 2016-08-04 17:42:26 +00:00
tests Remove openstack_hosts from test requirements 2016-07-20 18:47:01 -07:00
vars Implement Multi-OS support in os_cloudkitty 2016-08-02 08:07:58 +00:00
.gitignore Implement base configuration for OpenStack-CI 2016-07-01 09:35:24 -07:00
.gitreview Implement base configuration for OpenStack-CI 2016-07-01 09:35:24 -07: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
other-requirements.txt Implement base configuration for OpenStack-CI 2016-07-01 09:35:24 -07:00
README.rst Adding the extras and tests with updated readme 2016-05-19 22:21:55 -05:00
run_tests.sh Implement base configuration for OpenStack-CI 2016-07-01 09:35:24 -07:00
setup.cfg Implement base configuration for OpenStack-CI 2016-07-01 09:35:24 -07:00
setup.py Updated from global requirements 2016-07-15 03:57:44 +00:00
test-requirements.txt Updated from global requirements 2016-07-15 03:57:44 +00:00
tox.ini Ensure that doc linting is included in the linters test 2016-07-25 14:10:06 +01:00
Vagrantfile Implement base configuration for OpenStack-CI 2016-07-01 09:35:24 -07:00

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_user_password
cloudkitty_rabbitmq_password
cloudkitty_galera_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"