cc9dae4dee
Glance cache is used to keep a locally cache image in the glance_api service. Is an usefull service when an image is commonly used to speed times between pulling from storage backend and send to nova. Change-Id: I8e684cc10e4fee1cb52c17a126e3b11f69576cf6
20 lines
609 B
Django/Jinja
20 lines
609 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 = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
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 %}
|