Merge "Fix senlin workers and events"
This commit is contained in:
commit
21e8948839
@ -3,6 +3,10 @@ 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' %}
|
||||
@ -33,10 +37,16 @@ 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 %}
|
||||
|
Loading…
Reference in New Issue
Block a user