474b15dc5b
By default Trove is looking for "RegionOne", if the region is different the os_region_name parameter needs to be defined withing the Trove configuration files. To solve this issue, we need to set "os_region_name" option in trove-api, trove-taskmanager and trove-conductor configuration. os_region_name = {{ openstack_region_name }} Change-Id: I1397046d2c88ba50d01a65c48e021d3535fe39d2 Closes-bug: #1743402
29 lines
854 B
Django/Jinja
29 lines
854 B
Django/Jinja
[DEFAULT]
|
|
debug = {{ trove_logging_debug }}
|
|
|
|
log_dir = /var/log/kolla/trove
|
|
trove_auth_url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}/v3
|
|
conductor_manager = trove.conductor.manager.Manager
|
|
control_exchange = trove
|
|
|
|
transport_url = {{ rpc_transport_url }}
|
|
|
|
os_region_name = {{ openstack_region_name }}
|
|
|
|
[oslo_messaging_notifications]
|
|
transport_url = {{ notify_transport_url }}
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ trove_database_user }}:{{ trove_database_password }}@{{ trove_database_address }}/{{ trove_database_name }}
|
|
max_retries = -1
|
|
|
|
{% if enable_osprofiler | bool %}
|
|
[profiler]
|
|
enabled = true
|
|
trace_sqlalchemy = true
|
|
hmac_keys = {{ osprofiler_secret }}
|
|
{% if enable_elasticsearch | bool %}
|
|
connection_string = elasticsearch://{{ elasticsearch_address }}:{{ elasticsearch_port }}
|
|
{% endif %}
|
|
{% endif %}
|