kolla-ansible/ansible/roles/mistral/templates/mistral.conf.j2
zhubingbing 96bfb5967c fix mistral requires auth_uri to point to v3 explicitly
mistral create keystone client by using auth_uri to v3 explicitly[0]

[0] 7685cdb1b6/mistral/utils/openstack/keystone.py (L174),#L184

Change-Id: Iff38204414289a9aa36232b2c461bc5bdde46e56
Closes-Bug: #1620630
2016-10-09 02:50:03 +00:00

42 lines
1.6 KiB
Django/Jinja

[DEFAULT]
debug = {{ mistral_logging_debug }}
log_dir = /var/log/kolla/mistral
# NOTE(elemoine): set use_stderr to False or the logs will also be sent to
# stderr and collected by Docker
use_stderr = False
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 == 'mistral-api' %}
[api]
host = {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}
port = {{ mistral_api_port }}
{% endif %}
[database]
connection = mysql+pymysql://{{ mistral_database_user }}:{{ mistral_database_password }}@{{ mistral_database_address }}/{{ mistral_database_name }}
max_retries = -1
[keystone_authtoken]
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}/v3
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}/v3
auth_type = password
project_domain_id = default
user_domain_id = default
project_name = service
username = {{ mistral_keystone_user }}
password = {{ mistral_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 %}
[mistral]
url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ mistral_api_port }}
[oslo_messaging_notifications]
driver = noop