Role os_aodh for OpenStack-Ansible
Go to file
Flavio Percoco cfe514a952 Show team and repo badges on README
This patch adds the team's and repository's badges to the README file.
The motivation behind this is to communicate the project status and
features at first glance.

For more information about this effort, please read this email thread:

http://lists.openstack.org/pipermail/openstack-dev/2016-October/105562.html

To see an example of how this would look like check:

https://gist.github.com/804a08eaf37fb4a08240521e7f36d41e

Change-Id: I5746e6f50d0df11c649c12af6a33a76d84eaa25a
2016-11-25 16:07:02 +01:00
defaults Simplify pip options/constraints mechanism 2016-11-02 14:39:52 +00:00
doc [DOCS] Added release-name as a watermark to Docs. 2016-10-18 16:45:07 +00:00
examples Rename package lists (and related vars) appropriately 2016-08-30 16:32:36 +01:00
handlers Fix linting issues for ansible-lint 3.4.1 2016-11-02 02:40:30 +00:00
meta Update min_ansible_version to 2.0 2016-11-07 09:51:23 +00:00
releasenotes Simplify pip options/constraints mechanism 2016-11-02 14:39:52 +00:00
tasks Reinitialize venv upon install 2016-11-15 22:15:22 -06:00
templates Fix tmpfiles.d when multiple service are running 2016-11-04 14:58:15 -04:00
tests Merge "Using updated tempest method for aodh api." 2016-11-22 11:01:32 +00:00
vars Rename package lists (and related vars) appropriately 2016-08-30 16:32:36 +01: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 Compress test execution logs 2016-09-09 09:29:25 +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 Update testing bits for consistency 2016-09-17 17:17:21 -04: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-11-02 15:37:29 +00:00
tox.ini Use upper constraints for all tox targets 2016-10-19 07:41:30 +01:00
Vagrantfile Support Vagrant testing with Xenial 2016-07-29 15:16:20 -04: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"