2e4e60503a
We're duplicating code to build the keystone URLs in nearly every config, where we've already done it in group_vars. Replace the redundancy with a variable that does the same thing. Change-Id: I207d77870e2535c1cdcbc5eaf704f0448ac85a7a
20 lines
559 B
Django/Jinja
20 lines
559 B
Django/Jinja
[DEFAULT]
|
|
|
|
debug = {{ glance_logging_debug }}
|
|
log_file = /var/log/kolla/glance/glance-cache.log
|
|
|
|
image_cache_max_size = {{ glance_cache_max_size }}
|
|
image_cache_dir = /var/lib/glance/image-cache
|
|
|
|
auth_url = {{ keystone_admin_url }}
|
|
admin_password = {{ glance_keystone_password }}
|
|
admin_user = {{ glance_keystone_user }}
|
|
admin_tenant_name = {{ default_project_domain_id }}
|
|
|
|
registry_host = {{ api_interface_address }}
|
|
registry_port = {{ glance_registry_port }}
|
|
|
|
{% if glance_backend_file | bool %}
|
|
filesystem_store_datadir = /var/lib/glance/images/
|
|
{% endif %}
|