6e8ff22515
Double dots were removed by mistake in previous changes. This causes incorrect transport url. Change-Id: Id3b28574d7f06cecc97ddfb26815a4758f6f065a
99 lines
3.6 KiB
Django/Jinja
99 lines
3.6 KiB
Django/Jinja
[DEFAULT]
|
|
debug = {{ zun_logging_debug }}
|
|
|
|
{% if service_name == 'zun-api' %}
|
|
# Force zun-api.log or will use app.wsgi
|
|
log_file = /var/log/kolla/zun/zun-api.log
|
|
{% endif %}
|
|
|
|
log_dir = /var/log/kolla/zun
|
|
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 %}
|
|
|
|
state_path = /var/lib/zun
|
|
container_driver = docker.driver.DockerDriver
|
|
image_driver_list = glance
|
|
db_type = sql
|
|
|
|
[network]
|
|
driver = kuryr
|
|
|
|
[api]
|
|
host_ip = {{ api_interface_address }}
|
|
port = {{ zun_api_port }}
|
|
workers = {{ openstack_service_workers }}
|
|
|
|
[compute]
|
|
topic = zun-compute
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ zun_database_user }}:{{ zun_database_password }}@{{ zun_database_address }}/{{ zun_database_name }}
|
|
max_retries = -1
|
|
|
|
[zun_client]
|
|
version = 1
|
|
service_type = container
|
|
service_name = zun
|
|
|
|
[keystone_auth]
|
|
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_project_domain_id }}
|
|
user_domain_id = {{ default_user_domain_id }}
|
|
project_name = service
|
|
username = {{ zun_keystone_user }}
|
|
password = {{ zun_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 %}
|
|
|
|
[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_project_domain_id }}
|
|
user_domain_id = {{ default_user_domain_id }}
|
|
project_name = service
|
|
username = {{ zun_keystone_user }}
|
|
password = {{ zun_keystone_password }}
|
|
service_token_roles_required = True
|
|
|
|
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 %}
|
|
|
|
[glance_client]
|
|
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_project_domain_id }}
|
|
user_domain_id = {{ default_user_domain_id }}
|
|
project_name = service
|
|
username = {{ zun_keystone_user }}
|
|
password = {{ zun_keystone_password }}
|
|
region_name = {{ openstack_region_name }}
|
|
endpoint_type = internalURL
|
|
|
|
[neutron_client]
|
|
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_project_domain_id }}
|
|
user_domain_id = {{ default_user_domain_id }}
|
|
project_name = service
|
|
username = {{ zun_keystone_user }}
|
|
password = {{ zun_keystone_password }}
|
|
region_name = {{ openstack_region_name }}
|
|
endpoint_type = internalURL
|
|
|
|
{% 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 %}
|