Merge "Fix default multidomain choices"

This commit is contained in:
Zuul 2022-01-26 17:01:19 +00:00 committed by Gerrit Code Review
commit aa976a0544
2 changed files with 3 additions and 1 deletions

View File

@ -264,7 +264,7 @@ horizon_keystone_default_domain: Default
# Option to set the available domains to choose from. This is
# a list of pairs whose first value is the domain name and the
# second is the display name.
horizon_keystone_multidomain_choices: "(('{{ horizon_keystone_default_domain }}', '{{ horizon_keystone_default_domain }}'))"
horizon_keystone_multidomain_choices: "(('{{ horizon_keystone_default_domain }}', '{{ horizon_keystone_default_domain }}'),)"
# Enable/disable v2 openrc file download in horizon.
horizon_show_keystone_v2_rc: True

View File

@ -90,7 +90,9 @@ OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = {{ horizon_keystone_multidomain_support
OPENSTACK_KEYSTONE_DEFAULT_DOMAIN = "{{ horizon_keystone_default_domain }}"
{% else %}
OPENSTACK_KEYSTONE_DOMAIN_DROPDOWN = {{ horizon_keystone_multidomain_dropdown | bool }}
{% if horizon_keystone_multidomain_dropdown %}
OPENSTACK_KEYSTONE_DOMAIN_CHOICES = {{ horizon_keystone_multidomain_choices }}
{% endif %}
{% endif %}
{% endif %}