fd1d3af0df
This commit separates the messaging rpc and notify transports in order to support separate and different oslo.messaging backends This patch: * add rpc and notify variables * update service role conf templates * add example to globals.yaml * add release note Implements: blueprint hybrid-messaging Change-Id: I34691c2895c8563f1f322f0850ecff98d11b5185
44 lines
1.6 KiB
Django/Jinja
44 lines
1.6 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 = {{ rpc_transport_url }}
|
|
|
|
[api]
|
|
port = {{ aodh_api_port }}
|
|
host = {{ api_interface_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_domain_name }}
|
|
project_name = service
|
|
user_domain_name = {{ default_user_domain_name }}
|
|
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_project_domain_id }}
|
|
user_domain_id = {{ default_user_domain_id }}
|
|
auth_type = password
|
|
|
|
[oslo_messaging_notifications]
|
|
transport_url = {{ notify_transport_url }}
|