Merge "Enable glance proxying behaviour"

This commit is contained in:
Zuul 2024-01-09 08:45:43 +00:00 committed by Gerrit Code Review
commit 6bbe0987dc
2 changed files with 7 additions and 0 deletions
ansible/roles/glance/templates
releasenotes/notes

@ -4,6 +4,8 @@ debug = {{ glance_logging_debug }}
# NOTE(elemoine) log_dir alone does not work for Glance
log_file = /var/log/kolla/glance/glance-api.log
worker_self_reference_url = {{ 'https' if glance_enable_tls_backend | bool else 'http' }}://{{ api_interface_address | put_address_in_context('url') }}:{{ glance_api_port }}
{% if glance_enable_tls_backend | bool %}
bind_host = 127.0.0.1
{% else %}

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes glance image import
`LP#2048525 <https://bugs.launchpad.net/kolla-ansible/+bug/2048525>`__.