Role os_aodh for OpenStack-Ansible
Go to file
huang.zhiping ea262b41bc fix tox python3 overrides
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We do not want to set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36.

Change-Id: I92dcc6339f6877f3edffe1c2ce919c5a38b47fa5
Closes-Bug:  #1801657
2019-01-11 06:09:35 +00:00
defaults Use a common python build/install role 2018-09-03 11:06:17 +00:00
doc Replace port 35357 with 5000 2018-06-24 16:16:06 +00:00
examples Merge "Trivial: Fix the pep8 warning" 2018-10-06 22:50:24 +00:00
handlers Use a common python build/install role 2018-09-03 11:06:17 +00:00
meta SUSE: Add support for openSUSE Leap 15 2018-09-26 11:53:06 +01:00
releasenotes Fix typo in release note 2018-10-27 16:14:50 +02:00
tasks Remove unnecessary package install duplication 2018-10-30 19:16:06 +00:00
templates Add systemd journal logging to the service config 2018-07-31 14:44:42 -05:00
tests Set container_name as host_var in test inventory 2018-10-20 15:28:29 -07:00
vars Remove unnecessary package install duplication 2018-10-30 19:16:06 +00:00
zuul.d Zuul: Use openstack-ansible-role-distro_install-jobs template 2018-10-10 09:12:18 +02:00
.gitignore Updated from OpenStack Ansible Tests 2018-10-02 14:51:55 +00:00
.gitreview Implement base configuration for independent repository 2016-03-02 07:28:08 +00:00
CONTRIBUTING.rst Replace Chinese punctuation with English punctuation 2018-09-12 13:08:46 +00:00
LICENSE Seperated out Telemetry Alarming (Aodh) 2015-10-15 11:20:53 +01:00
README.rst Add bugs url link to README 2018-12-04 10:05:18 +00:00
Vagrantfile Updated from OpenStack Ansible Tests 2018-09-28 06:18:35 +00:00
bindep.txt Updated from OpenStack Ansible Tests 2017-12-06 00:05:47 +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 2018-09-29 04:53:29 +00:00
setup.cfg Update mailinglist from dev to discuss 2018-12-05 09:16:39 +08:00
setup.py Updated from global requirements 2017-03-02 11:51:28 +00:00
tox.ini fix tox python3 overrides 2019-01-11 06:09:35 +00: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 Oslo.Messaging
aodh_oslomsg_rpc_transport: rabbit
aodh_oslomsg_rpc_password: "secrete"
aodh_oslomsg_rpc_servers: "10.100.100.2"
aodh_oslomsg_rpc_use_ssl: true
aodh_oslomsg_rpc_port: 5671
aodh_oslomsg_notify_transport: rabbit
aodh_oslomsg_notify_password: "secrete"
aodh_oslomsg_notify_servers: "10.100.100.2"
aodh_oslomsg_notify_use_ssl: true
aodh_oslomsg_notify_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:5000"
keystone_service_adminurl: "{{ keystone_service_adminuri }}/v3"

OpenStack-Ansible Aodh

Ansible role to install OpenStack Aodh.

Documentation for the project can be found at:

https://docs.openstack.org/openstack-ansible-os_aodh/latest/

Release notes for the project can be found at:

https://docs.openstack.org/releasenotes/openstack-ansible-os_aodh

The project source code repository is located at:

https://git.openstack.org/cgit/openstack/openstack-ansible-os_aodh/

The project home is at:

https://launchpad.net/openstack-ansible

The project bug tracker is located at:

https://bugs.launchpad.net/openstack-ansible