[DEFAULT] debug = {{ senlin_logging_debug }} log_dir = /var/log/kolla/senlin {% if service_name == 'senlin-engine' %} num_engine_workers = {{ openstack_service_workers }} {% endif %} 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 }} workers = {{ openstack_service_workers }} {% 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 }} service_token_roles_required = False 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] {% if enable_ceilometer | bool %} driver = messagingv2 topics = 'notifications' {% else %} driver = noop {% endif %} {% 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 %}