Role os_aodh for OpenStack-Ansible
Go to file
Andy McCrae 8c72de83a7 Allow the developer constraints to be adjusted
In order to do a developer mode that allows installation of packages
from local file, which take precedence over the developer_mode
constraints, we need to allow the order of the constraints to be
changed.

This patch adds a "pip_install_developer_constraints" var which is used
to set the developer mode constraints. By default this will leave the
same behaviour but will allow additional constraints to be added, or the
developermode constraints file to be overriden altogether.

Change-Id: I643d1fd7f9bb3b7731dd56a9a9c4ac3c1f8049d6
2017-05-26 10:44:03 +01:00
defaults Update sqlalchemy constraints to match upstream 2017-05-01 14:53:44 +00:00
doc [DOC] Remove confusing sentence 2017-02-21 16:47:49 -05: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 Rename release note to unique hash 2017-04-28 11:37:56 +01:00
tasks Allow the developer constraints to be adjusted 2017-05-26 10:44:03 +01:00
templates deprecate rabbit_use_ssl option 2017-05-23 10:08:03 +08:00
tests Use zuul-cloner for tests repo in OpenStack-CI 2017-05-04 16:50:31 +01:00
vars Add which in CentOS package list 2017-01-11 13:57:39 -05:00
.gitignore Using updated tempest method for aodh api. 2016-11-22 10:00:58 +02:00
.gitreview Implement base configuration for independent repository 2016-03-02 07:28:08 +00:00
bindep.txt Install python2-pyOpenSSL package on CentOS 2017-03-03 12:49:28 -06: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
manual-test.rc Use centralised test scripts 2016-09-27 17:08:44 +00:00
README.rst Show team and repo badges on README 2016-11-25 16:07:02 +01:00
run_tests.sh Update and clean up run_tests.sh 2017-01-06 16:54:04 +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 Updated from global requirements 2017-05-17 03:54:37 +00:00
tox.ini Use zuul-cloner for tests repo in OpenStack-CI 2017-05-04 16:50:31 +01:00
Vagrantfile Remove Trusty support from os_aodh role 2016-12-15 13:15:24 +00:00

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"