
This helps to improve the reliability of openstack services when a rabbitmq node has issues. See also: https://bugs.launchpad.net/oslo.messaging/+bug/2031497 Adjust the upgrade tests similar to what was done during the introduction of quorum queues in I6c033d460a5c9b93c346e9e47e93b159d3c27830 Closes-Bug: #2078339 Partial-Bug: #2077448 Depends-On: https://review.opendev.org/c/openstack/oslo.messaging/+/888479 Depends-On: https://review.opendev.org/c/openstack/kolla-ansible/+/924623 Signed-off-by: Sven Kieske <kieske@osism.tech> Change-Id: Idb8a8d2e560206f7697c0771c9ae3913268fa6dd
87 lines
2.7 KiB
Django/Jinja
87 lines
2.7 KiB
Django/Jinja
#jinja2: trim_blocks: False
|
|
[DEFAULT]
|
|
auth_strategy = keystone
|
|
log_dir = /var/log/kolla/aodh
|
|
debug = {{ aodh_logging_debug }}
|
|
evaluation_interval = {{ aodh_evaluation_interval }}
|
|
transport_url = {{ rpc_transport_url }}
|
|
|
|
[api]
|
|
port = {{ aodh_api_listen_port }}
|
|
host = {{ api_interface_address }}
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ aodh_database_user }}:{{ aodh_database_password }}@{{ aodh_database_address }}/{{ aodh_database_name }}
|
|
connection_recycle_time = {{ database_connection_recycle_time }}
|
|
max_pool_size = {{ database_max_pool_size }}
|
|
|
|
[keystone_authtoken]
|
|
service_type = alarming
|
|
memcache_security_strategy = {{ memcache_security_strategy }}
|
|
memcache_secret_key = {{ memcache_secret_key }}
|
|
memcached_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_address(host) | put_address_in_context('memcache') }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
www_authenticate_uri = {{ keystone_public_url }}
|
|
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 = {{ keystone_internal_url }}
|
|
auth_type = password
|
|
cafile = {{ openstack_cacert }}
|
|
region_name = {{ openstack_region_name }}
|
|
|
|
[oslo_middleware]
|
|
enable_proxy_headers_parsing = true
|
|
|
|
{% if aodh_policy_file is defined %}
|
|
[oslo_policy]
|
|
policy_file = {{ aodh_policy_file }}
|
|
{% endif %}
|
|
|
|
[service_credentials]
|
|
auth_url = {{ keystone_internal_url }}
|
|
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
|
|
interface = internal
|
|
cafile = {{ openstack_cacert }}
|
|
|
|
[oslo_messaging_notifications]
|
|
transport_url = {{ notify_transport_url }}
|
|
{% if aodh_enabled_notification_topics %}
|
|
driver = messagingv2
|
|
topics = {{ aodh_enabled_notification_topics | map(attribute='name') | join(',') }}
|
|
{% else %}
|
|
driver = noop
|
|
{% endif %}
|
|
|
|
[oslo_messaging_rabbit]
|
|
{% if om_enable_queue_manager | bool %}
|
|
use_queue_manager = true
|
|
{% if service_name == 'aodh-api' %}
|
|
processname = {{ service_name }}
|
|
{% endif %}
|
|
{% endif %}
|
|
heartbeat_in_pthread = {{ service_name == 'aodh-api' }}
|
|
{% if om_enable_rabbitmq_tls | bool %}
|
|
ssl = true
|
|
ssl_ca_file = {{ om_rabbitmq_cacert }}
|
|
{% endif %}
|
|
{% if om_enable_rabbitmq_high_availability | bool %}
|
|
amqp_durable_queues = true
|
|
{% endif %}
|
|
{% if om_enable_rabbitmq_quorum_queues | bool %}
|
|
rabbit_quorum_queue = true
|
|
{% if om_enable_rabbitmq_transient_quorum_queue | bool %}
|
|
rabbit_transient_quorum_queue = true
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
[oslo_concurrency]
|
|
lock_path = /var/lib/aodh/tmp
|