87 lines
2.5 KiB
Django/Jinja
87 lines
2.5 KiB
Django/Jinja
[DEFAULT]
|
|
debug = {{ senlin_logging_debug }}
|
|
|
|
log_dir = /var/log/kolla/senlin
|
|
|
|
transport_url = {{ rpc_transport_url }}
|
|
|
|
{% if service_name == 'senlin-api' %}
|
|
[senlin_api]
|
|
bind_host = {{ api_interface_address }}
|
|
bind_port = {{ senlin_api_listen_port }}
|
|
workers = {{ openstack_service_workers }}
|
|
{% endif %}
|
|
|
|
[authentication]
|
|
auth_url = {{ keystone_admin_url }}
|
|
service_username = {{ senlin_keystone_user }}
|
|
service_password = {{ senlin_keystone_password }}
|
|
service_project_name = service
|
|
service_user_domain = default
|
|
service_project_domain = default
|
|
|
|
{% if service_name == 'senlin-conductor' %}
|
|
[conductor]
|
|
workers = {{ openstack_service_workers }}
|
|
{% endif %}
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ senlin_database_user }}:{{ senlin_database_password }}@{{ senlin_database_address }}/{{ senlin_database_name }}
|
|
connection_recycle_time = {{ database_connection_recycle_time }}
|
|
max_pool_size = {{ database_max_pool_size }}
|
|
max_retries = -1
|
|
|
|
{% if service_name == 'senlin-engine' %}
|
|
[engine]
|
|
workers = {{ openstack_service_workers }}
|
|
{% endif %}
|
|
|
|
{% if service_name == 'senlin-health-manager' %}
|
|
[health_manager]
|
|
workers = {{ openstack_service_workers }}
|
|
{% endif %}
|
|
|
|
[keystone_authtoken]
|
|
www_authenticate_uri = {{ keystone_internal_url }}
|
|
auth_url = {{ keystone_admin_url }}
|
|
auth_type = password
|
|
project_domain_id = {{ default_project_domain_id }}
|
|
user_domain_id = {{ default_user_domain_id }}
|
|
project_name = service
|
|
username = {{ senlin_keystone_user }}
|
|
password = {{ senlin_keystone_password }}
|
|
service_token_roles_required = False
|
|
cafile = {{ openstack_cacert }}
|
|
|
|
memcache_security_strategy = ENCRYPT
|
|
memcache_secret_key = {{ memcache_secret_key }}
|
|
memcached_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_address(host) | put_address_in_context('memcache') }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
|
|
[oslo_messaging_notifications]
|
|
transport_url = {{ notify_transport_url }}
|
|
{% if senlin_enabled_notification_topics %}
|
|
driver = messagingv2
|
|
topics = {{ senlin_enabled_notification_topics | map(attribute='name') | join(',') }}
|
|
{% else %}
|
|
driver = noop
|
|
{% endif %}
|
|
|
|
{% if om_enable_rabbitmq_tls | bool %}
|
|
[oslo_messaging_rabbit]
|
|
ssl = true
|
|
ssl_ca_file = {{ om_rabbitmq_cacert }}
|
|
{% endif %}
|
|
|
|
{% if senlin_policy_file is defined %}
|
|
[oslo_policy]
|
|
policy_file = {{ senlin_policy_file }}
|
|
{% endif %}
|
|
|
|
{% if enable_osprofiler | bool %}
|
|
[profiler]
|
|
enabled = true
|
|
trace_sqlalchemy = true
|
|
hmac_keys = {{ osprofiler_secret }}
|
|
connection_string = {{ osprofiler_backend_connection_string }}
|
|
{% endif %}
|