Role os_aodh for OpenStack-Ansible
Go to file
Markos Chandras be3b221366 Add support for the openSUSE Leap distributions
Add support for the openSUSE Leap distributions. Additionally,
for openSUSE, we need to load some extra apache2 modules which are
not there by default.

Change-Id: Ic6200e17b5e5b39c06166aae37bab4d31f2df817
2017-07-10 22:42:17 +01:00
defaults Switch to Cryptography over pycrypto 2017-06-07 17:48:10 +00:00
doc Fix openstackdocstheme settings 2017-07-03 16:10:34 +08:00
examples Rename package lists (and related vars) appropriately 2016-08-30 16:32:36 +01:00
handlers Merge "Ensure that policy file has correct group/mode" 2017-05-24 23:56:16 +00:00
meta Optimise apt cache update task 2017-04-21 16:13:30 +01:00
releasenotes Fix openstackdocstheme settings 2017-07-03 16:10:34 +08:00
tasks Add support for the openSUSE Leap distributions 2017-07-10 22:42:17 +01:00
templates templates: aodh-httpd: Ensure proper user control in aodh root 2017-07-10 22:42:10 +01:00
tests Updated from OpenStack Ansible Tests 2017-06-22 15:19:14 +00:00
vars Add support for the openSUSE Leap distributions 2017-07-10 22:42:17 +01:00
.gitignore Updated from OpenStack Ansible Tests 2017-06-22 15:19:14 +00:00
.gitreview Implement base configuration for independent repository 2016-03-02 07:28:08 +00:00
CONTRIBUTING.rst [DOCS] - Removing tags: and category: 2016-08-18 15:45:32 -04:00
LICENSE Seperated out Telemetry Alarming (Aodh) 2015-10-15 11:20:53 +01:00
README.rst Show team and repo badges on README 2016-11-25 16:07:02 +01:00
Vagrantfile Updated from OpenStack Ansible Tests 2017-07-06 13:02:15 +00:00
bindep.txt Updated from OpenStack Ansible Tests 2017-07-06 21:08:04 +00:00
manual-test.rc Use centralised test scripts 2016-09-27 17:08:44 +00:00
run_tests.sh Updated from OpenStack Ansible Tests 2017-06-22 15:19:14 +00:00
setup.cfg Update homepage with developer documentation page 2016-09-20 12:38:55 +05:30
setup.py Updated from global requirements 2017-03-02 11:51:28 +00:00
test-requirements.txt Fix openstackdocstheme settings 2017-07-03 16:10:34 +08:00
tox.ini Ensure that role tests pin pip/setuptools/wheel 2017-06-04 11:19:41 +01:00

README.rst

Team and repository tags

image

OpenStack Aodh

Ansible role that installs and configures OpenStack Aodh as the alarm functionality of Telemetry.

This role will install the following:
  • aodh-api
  • aodh-listener
  • aodh-evaluator
  • aodh-notifier

The role will configure Aodh to use MongoDB for data storage, but does not install or configure MongoDB.

Default Variables

../../defaults/main.yml

Required Variables

To use this role, define the following variables:

# Needed for aodh to talk to MongoDB
aodh_container_db_password: "secrete"
# Password used for Keystone aodh service user
aodh_service_password: "secrete"
# Needed for aodh to talk to memcached
memcached_servers: 127.0.0.1
memcached_encryption_key: "some_key"
# Needed for aodh to locate and connect to the RabbitMQ cluster
aodh_rabbitmq_password: "secrete"
rabbitmq_servers: "10.100.100.2"
rabbitmq_use_ssl: true
rabbitmq_port: 5671
# Needed to setup the aodh service in Keystone
keystone_admin_user_name: admin
keystone_admin_tenant_name: admin
keystone_auth_admin_password: "SuperSecretePassword"
keystone_service_adminuri_insecure: false
keystone_service_internaluri_insecure: false
keystone_service_internaluri: "http://1.2.3.4:5000"
keystone_service_internalurl: "{{ keystone_service_internaluri }}/v3"
keystone_service_adminuri: "http://5.6.7.8:35357"
keystone_service_adminurl: "{{ keystone_service_adminuri }}/v3"