3b8209c982
* The recently merged aodh role is trying to copy api_paste.ini on startup which is already present at build time. * memcache_servers was using incorrect for loop syntax Note, the trim_blocks header is to solve the issue highlighted by Jeffrey[0] [0] http://lists.openstack.org/pipermail/openstack-dev/2016-September/103532.html Change-Id: I8baa5446b3b6271d57d54c4c1663a338d8ab3cc8 Closes-Bug: #1624462
41 lines
1.7 KiB
Django/Jinja
41 lines
1.7 KiB
Django/Jinja
#jinja2: trim_blocks: False
|
|
[DEFAULT]
|
|
auth_strategy = keystone
|
|
log_dir = /var/log/kolla/aodh
|
|
debug = {{ aodh_logging_debug }}
|
|
notification_topics = notifications
|
|
|
|
transport_url = rabbit://{% for host in groups['rabbitmq'] %}{{ rabbitmq_user }}:{{ rabbitmq_password }}@{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ rabbitmq_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
|
|
[api]
|
|
port = {{ aodh_api_port }}
|
|
host = {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ aodh_database_user }}:{{ aodh_database_password }}@{{ aodh_database_address }}/{{ aodh_database_name }}
|
|
|
|
|
|
[keystone_authtoken]
|
|
memcache_security_strategy = ENCRYPT
|
|
memcache_secret_key = {{ memcache_secret_key }}
|
|
memcache_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
|
project_domain_name = default
|
|
project_name = service
|
|
user_domain_name = default
|
|
username = {{ aodh_keystone_user }}
|
|
password = {{ aodh_keystone_password }}
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
auth_type = password
|
|
|
|
|
|
[service_credentials]
|
|
auth_url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}/v3
|
|
region_name = {{ openstack_region_name }}
|
|
password = {{ aodh_keystone_password }}
|
|
username = {{ aodh_keystone_user }}
|
|
project_name = service
|
|
project_domain_id = default
|
|
user_domain_id = default
|
|
auth_type = password
|