Merge "Add /v3 suffix to OPENSTACK_KEYSTONE_URL"

This commit is contained in:
Zuul 2024-08-09 00:20:05 +00:00 committed by Gerrit Code Review
commit b8a4f4c7fc
2 changed files with 8 additions and 1 deletions

View File

@ -53,7 +53,8 @@ AVAILABLE_REGIONS = [
{% endif %}
OPENSTACK_HOST = "{{ kolla_internal_fqdn }}"
OPENSTACK_KEYSTONE_URL = "{{ horizon_keystone_url }}"
# TODO(fprzewozn): URL /v3 suffix is required until Horizon bug #2073639 is resolved
OPENSTACK_KEYSTONE_URL = "{{ horizon_keystone_url }}/v3"
OPENSTACK_KEYSTONE_DEFAULT_ROLE = "{{ keystone_default_user_role }}"
{% if enable_keystone_federation | bool %}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes behaviour of Change Password screen in Horizon until
`bug #2073639 <https://launchpad.net/bugs/2073639>`__ is resolved.
`LP#2073159 <https://launchpad.net/bugs/2073159>`__