Role os_aodh for OpenStack-Ansible
Go to file
Jesse Pretorius f23bafaf8e Used cached git sources and enable depends-on
Many, many patches have gone into the master branch to
enable the use of depends-on for role tests and to make
use of the git clones put into place by zuul. This patch
ensures that this functionality is now available for this
branch too.

The primary benefit for doing this would be to make use
of the cached git clones provided by zuul to improve test
reliability.

The secondary benefit would be to have the ability to
use depends-on to test patches together.

However, this will come at the cost of requiring a tox
configuration change, and the implementation of the
tests/tests-repo-clone.sh and run_tests.sh scripts
across all repositories.

Change-Id: I7a386690c17de5bc63d5db6e7cefc15a4c30162f
Depends-On: Ia806f19e00703c53f03a2420dbac1da4ba68db6c
2017-11-06 18:21:43 +00:00
defaults Ensure the components are isolated from the system 2017-04-26 15:21:32 +00:00
doc Initial OSA zuul v3 role jobs 2017-11-03 11:13:27 +00: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" into stable/ocata 2017-06-06 17:22:03 +00:00
meta Optimise apt cache update task 2017-04-24 19:02:40 +00:00
releasenotes Initial OSA zuul v3 role jobs 2017-11-03 11:13:27 +00:00
tasks Add venv_tag local fact 2017-05-22 17:47:54 +00:00
templates Reduce init restart/kill times 2017-04-26 16:49:41 +01:00
tests Used cached git sources and enable depends-on 2017-11-06 18:21:43 +00:00
vars Add which in CentOS package list 2017-01-11 13:57:39 -05:00
zuul.d Initial OSA zuul v3 role jobs 2017-11-03 11:13:27 +00:00
.gitignore Using updated tempest method for aodh api. 2016-11-22 10:00:58 +02:00
.gitreview Update .gitreview for stable/ocata 2017-02-03 18:58:01 +00:00
bindep.txt Initial OSA zuul v3 role jobs 2017-11-03 11:13:27 +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
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 Used cached git sources and enable depends-on 2017-11-06 18:21:43 +00:00
setup.cfg Update homepage with developer documentation page 2016-09-20 12:38:55 +05:30
setup.py Updated from global requirements 2016-07-15 03:57:37 +00:00
test-requirements.txt Updated from global requirements 2016-12-02 05:10:34 +00:00
tox.ini Used cached git sources and enable depends-on 2017-11-06 18:21:43 +00:00
Vagrantfile Updated from OpenStack Ansible Tests 2017-11-03 16:37:09 +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"