9e324268d0
Change-Id: I4f24bcc69e02eaa961b5791b3986e969368c50a8 Closes-Bug: #1625691
42 lines
1.6 KiB
Django/Jinja
42 lines
1.6 KiB
Django/Jinja
[DEFAULT]
|
|
debug = {{ senlin_logging_debug }}
|
|
|
|
log_dir = /var/log/kolla/senlin
|
|
|
|
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 %}
|
|
|
|
{% if service_name == 'senlin-api' %}
|
|
[senlin_api]
|
|
bind_host = {{ api_interface_address }}
|
|
bind_port = {{ senlin_api_port }}
|
|
{% endif %}
|
|
|
|
[authentication]
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
service_username = {{ senlin_keystone_user }}
|
|
service_password = {{ senlin_keystone_password }}
|
|
service_project_name = service
|
|
service_user_domain = default
|
|
service_project_domain = default
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ senlin_database_user }}:{{ senlin_database_password }}@{{ senlin_database_address }}/{{ senlin_database_name }}
|
|
max_retries = -1
|
|
|
|
[keystone_authtoken]
|
|
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
auth_type = password
|
|
project_domain_id = default
|
|
user_domain_id = default
|
|
project_name = service
|
|
username = {{ senlin_keystone_user }}
|
|
password = {{ senlin_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 %}
|
|
|
|
[oslo_messaging_notifications]
|
|
driver = noop
|