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
52 lines
1.7 KiB
Django/Jinja
52 lines
1.7 KiB
Django/Jinja
[DEFAULT]
|
|
debug = {{ murano_logging_debug }}
|
|
|
|
log_dir = /var/log/kolla/murano
|
|
|
|
{% if service_name == 'murano-api' %}
|
|
bind_host = {{ api_interface_address }}
|
|
bind_port = {{ murano_api_port }}
|
|
{% endif %}
|
|
|
|
transport_url = {{ rpc_transport_url }}
|
|
|
|
[engine]
|
|
engine_workers = {{ openstack_service_workers }}
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ murano_database_user }}:{{ murano_database_password }}@{{ murano_database_address }}/{{ murano_database_name }}
|
|
max_retries = -1
|
|
|
|
[keystone]
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
|
|
[keystone_authtoken]
|
|
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
|
auth_host = {{ kolla_internal_fqdn }}
|
|
auth_port = {{ keystone_public_port }}
|
|
auth_protocol = {{ internal_protocol }}
|
|
admin_tenant_name = service
|
|
admin_user = {{ murano_keystone_user }}
|
|
admin_password = {{ murano_keystone_password }}
|
|
|
|
memcache_security_strategy = ENCRYPT
|
|
memcache_secret_key = {{ memcache_secret_key }}
|
|
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
|
|
[murano]
|
|
url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ murano_api_port }}
|
|
api_workers = {{ openstack_service_workers }}
|
|
|
|
[oslo_messaging_notifications]
|
|
transport_url = {{ notify_transport_url }}
|
|
driver = messagingv2
|
|
|
|
{% if service_name == 'murano-engine' %}
|
|
[rabbitmq]
|
|
host = {{ kolla_external_fqdn }}
|
|
port = {{ outward_rabbitmq_port }}
|
|
login = {{ murano_agent_rabbitmq_user }}
|
|
password = {{ murano_agent_rabbitmq_password }}
|
|
virtual_host = {{ murano_agent_rabbitmq_vhost }}
|
|
{% endif %}
|