Drop horizon_keystone_host variable

The horizon_keystone_host is only used as interpolation
for OPENSTACK_KEYSTONE_URL, which we define manually. So
horizon_keystone_hosts server no purpose.

Change-Id: I693bdb30e3d812592f023c00fbbbd62f069320bf
This commit is contained in:
Guilherme Steinmüller 2019-04-01 03:35:12 +00:00
parent c4674318bf
commit 1d3deabcff
2 changed files with 0 additions and 4 deletions

View File

@ -240,7 +240,6 @@ horizon_secure_proxy_ssl_header_django: "HTTP_{{ horizon_secure_proxy_ssl_header
# - { url: "http://cluster1.example.com:5000/v2.0", name: "RegionTwo" }
## Horizon's keystone endpoint settings
horizon_keystone_host: "{{ internal_lb_vip_address }}"
horizon_keystone_endpoint: "{{ keystone_service_internalurl }}"
## Horizon Multi-Domain Support

View File

@ -178,9 +178,6 @@ AVAILABLE_REGIONS = [
('{{ item.url }}', '{{ item.name }}'),
{% endfor %}
]
{% else %}
# Set Horizon to use a specific Keystone endpoint
OPENSTACK_HOST = "{{ horizon_keystone_host }}"
{% endif %}
OPENSTACK_KEYSTONE_URL = "{{ horizon_keystone_endpoint }}"