Merge "[Horizon] Allow configuration of Keystone's URL"

This commit is contained in:
Zuul 2018-04-04 02:22:25 +00:00 committed by Gerrit Code Review
commit c13d1a6255
3 changed files with 8 additions and 1 deletions

View File

@ -60,6 +60,7 @@ horizon_image_full: "{{ horizon_image }}:{{ horizon_tag }}"
# OpenStack
####################
horizon_logging_debug: "{{ openstack_logging_debug }}"
horizon_keystone_url: "{{ keystone_internal_url }}"
####################

View File

@ -206,7 +206,7 @@ AVAILABLE_REGIONS = [
OPENSTACK_HOST = "{{ kolla_internal_fqdn }}"
OPENSTACK_KEYSTONE_URL = "{{ keystone_internal_url }}"
OPENSTACK_KEYSTONE_URL = "{{ horizon_keystone_url }}"
OPENSTACK_KEYSTONE_DEFAULT_ROLE = "{{ keystone_default_user_role }}"
# Enables keystone web single-sign-on if set to True.

View File

@ -0,0 +1,6 @@
---
features:
- |
Introduces a new variable, horizon_keystone_url, which facilitates
overriding the URL used by Horizon to talk to the identity service
(Keystone). Defaults to the identity service's internal URL.