
* Remove docker's cluster-store option. This option was removed from the latest version of docker so we removed it. * Switch kuryr's capability_scope from "global" to "local". The "global" scope relies on a cluster store but docker no longer supports it. Change-Id: Ie62396184552938d099223f9d325a41c9a5067c3
30 lines
820 B
Django/Jinja
30 lines
820 B
Django/Jinja
[DEFAULT]
|
|
kuryr_uri = {{ kuryr_internal_endpoint }}
|
|
debug = {{ kuryr_logging_debug }}
|
|
log_dir = /var/log/kolla/kuryr
|
|
|
|
capability_scope = local
|
|
bindir = /var/lib/kolla/venv/libexec/kuryr
|
|
|
|
[binding]
|
|
default_driver = kuryr.lib.binding.drivers.veth
|
|
|
|
[neutron]
|
|
auth_uri = {{ keystone_internal_url }}
|
|
auth_url = {{ keystone_internal_url }}
|
|
auth_type = password
|
|
endpoint_type = internal
|
|
project_domain_name = {{ default_project_domain_name }}
|
|
project_name = service
|
|
user_domain_name = {{ default_user_domain_name }}
|
|
project_domain_id = {{ default_project_domain_id }}
|
|
user_domain_id = {{ default_user_domain_id }}
|
|
password = {{ kuryr_keystone_password }}
|
|
username = {{ kuryr_keystone_user }}
|
|
cafile = {{ openstack_cacert }}
|
|
|
|
{% if kuryr_policy_file is defined %}
|
|
[oslo_policy]
|
|
policy_file = {{ kuryr_policy_file }}
|
|
{% endif %}
|