Role os_aodh for OpenStack-Ansible
Go to file
OpenStack Proposal Bot 07e2695303 Updated from global requirements
Change-Id: Ie6b6730939af1ec03772b2dc08e2fecd463c76e6
2018-03-15 07:31:51 +00:00
defaults Replace virtualenv-tools by a script 2018-02-09 16:43:43 +00:00
doc Updated from global requirements 2018-03-15 07:31:51 +00:00
examples Rename package lists (and related vars) appropriately 2016-08-30 16:32:36 +01:00
handlers Standardize services list and package installation 2018-02-20 20:04:17 +00:00
meta Remove pip_install dependency 2017-12-05 11:54:22 +00:00
releasenotes Update reno for stable/queens 2018-02-14 15:46:57 +00:00
tasks Merge "Standardize services list and package installation" 2018-02-21 00:50:30 +00:00
templates Standardize services list and package installation 2018-02-20 20:04:17 +00:00
tests ansible-role-requirements: Add common systemd_service role 2018-03-13 16:49:00 +00:00
vars Standardize services list and package installation 2018-02-20 20:04:17 +00:00
zuul.d Zuul: Remove project name 2018-02-18 11:58:44 +00: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
bindep.txt Updated from OpenStack Ansible Tests 2017-12-06 00:05:47 +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 Update links in README 2018-03-03 11:41:08 +08:00
run_tests.sh Updated from OpenStack Ansible Tests 2017-11-10 13:15:39 +00:00
setup.cfg Update URLs in documents according to document migration 2017-07-14 09:36:12 +08:00
setup.py Updated from global requirements 2017-03-02 11:51:28 +00:00
test-requirements.txt Updated from global requirements 2018-03-15 07:31:51 +00:00
tox.ini Follow the new PTI for document build 2018-03-09 12:01:26 +08:00
Vagrantfile Updated from OpenStack Ansible Tests 2018-01-22 16:54:22 +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"