2015-08-28 10:49:29 +01:00
|
|
|
[DEFAULT]
|
2016-01-20 15:44:27 +08:00
|
|
|
debug = {{ murano_logging_debug }}
|
2015-08-28 10:49:29 +01:00
|
|
|
|
2016-02-17 14:36:44 +01:00
|
|
|
log_dir = /var/log/kolla/murano
|
2015-09-25 17:12:55 +02:00
|
|
|
|
2015-08-28 10:49:29 +01:00
|
|
|
{% if service_name == 'murano-api' %}
|
|
|
|
bind_host = {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}
|
|
|
|
bind_port = {{ murano_api_port }}
|
|
|
|
{% endif %}
|
|
|
|
|
2016-08-17 18:30:46 +08:00
|
|
|
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 %}
|
|
|
|
|
2016-05-16 21:53:16 +08:00
|
|
|
[engine]
|
2016-11-03 13:21:03 +08:00
|
|
|
engine_workers = {{ openstack_service_workers }}
|
2016-05-16 21:53:16 +08:00
|
|
|
|
2015-08-28 10:49:29 +01:00
|
|
|
[database]
|
2015-12-21 16:16:25 +00:00
|
|
|
connection = mysql+pymysql://{{ murano_database_user }}:{{ murano_database_password }}@{{ murano_database_address }}/{{ murano_database_name }}
|
2016-04-06 20:45:17 +00:00
|
|
|
max_retries = -1
|
2015-08-28 10:49:29 +01:00
|
|
|
|
2016-09-19 15:52:16 +08:00
|
|
|
[keystone]
|
|
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
|
|
|
2015-08-28 10:49:29 +01:00
|
|
|
[keystone_authtoken]
|
2016-02-26 01:02:25 +00:00
|
|
|
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
2016-09-19 15:52:16 +08:00
|
|
|
auth_host = {{ kolla_internal_fqdn }}
|
|
|
|
auth_port = {{ keystone_public_port }}
|
|
|
|
auth_protocol = {{ internal_protocol }}
|
2016-09-06 15:21:37 +05:30
|
|
|
admin_tenant_name = service
|
|
|
|
admin_user = {{ murano_keystone_user }}
|
|
|
|
admin_password = {{ murano_keystone_password }}
|
2015-08-28 10:49:29 +01:00
|
|
|
|
2016-03-19 16:42:26 +00:00
|
|
|
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 %}
|
|
|
|
|
|
|
|
|
2015-08-28 10:49:29 +01:00
|
|
|
[murano]
|
2016-02-26 01:02:25 +00:00
|
|
|
url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ murano_api_port }}
|
2016-11-03 13:21:03 +08:00
|
|
|
api_workers = {{ openstack_service_workers }}
|
2015-08-28 10:49:29 +01:00
|
|
|
|
2016-01-16 17:33:15 +08:00
|
|
|
|
|
|
|
[oslo_messaging_notifications]
|
2016-08-16 17:24:22 +03:00
|
|
|
driver = messagingv2
|