Horizon multidomain flag

Added horizon_keystone_multidomain flag. It can be now overriden
in globals.yml. Default set to False.

Change-Id: I6f8f261cf4b9779e57c2443ac219cdddb1731f52
This commit is contained in:
Pierre Hanselmann 2017-09-25 15:27:55 +02:00
parent 6ef31cf973
commit bd186a2e47
3 changed files with 7 additions and 1 deletions

View File

@ -574,6 +574,7 @@ murano_agent_rabbitmq_user: "muranoagent"
# Horizon options
#######################
horizon_backend_database: "{{ enable_murano | bool }}"
horizon_keystone_multidomain: False
#################

View File

@ -87,7 +87,7 @@ OPENSTACK_API_VERSIONS = {
# Set this to True if running on a multi-domain model. When this is enabled, it
# will require the user to enter the Domain name in addition to the username
# for login.
#OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = False
OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = {{ horizon_keystone_multidomain | bool }}
# Overrides the default domain used when running on single-domain model
# with Keystone V3. All entities will be created in the default domain.

View File

@ -0,0 +1,5 @@
---
features:
- |
Added horizon_keystone_multidomain flag for horizon multidomain support.
This flag can be overriden in globals.yml. Default value: False