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-05-16 21:53:16 +08:00
|
|
|
[engine]
|
|
|
|
workers = {{ openstack_service_workers }}
|
|
|
|
|
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
|
|
|
|
|
|
|
[keystone_authtoken]
|
2016-02-26 01:02:25 +00:00
|
|
|
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
|
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
2016-01-16 07:37:55 +08:00
|
|
|
auth_type = password
|
2015-08-28 10:49:29 +01:00
|
|
|
project_domain_id = default
|
|
|
|
user_domain_id = default
|
|
|
|
project_name = service
|
|
|
|
username = {{ murano_keystone_user }}
|
|
|
|
password = {{ murano_keystone_password }}
|
|
|
|
|
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 }}
|
2015-08-28 10:49:29 +01:00
|
|
|
|
2015-10-16 07:58:34 +00:00
|
|
|
[oslo_messaging_rabbit]
|
|
|
|
rabbit_userid = {{ rabbitmq_user }}
|
|
|
|
rabbit_password = {{ rabbitmq_password }}
|
|
|
|
rabbit_ha_queues = true
|
2015-11-20 18:50:55 +09:00
|
|
|
rabbit_hosts = {% for host in groups['rabbitmq'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ rabbitmq_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
2016-01-16 17:33:15 +08:00
|
|
|
|
|
|
|
[oslo_messaging_notifications]
|
2016-08-16 17:24:22 +03:00
|
|
|
driver = messagingv2
|