Always use publicURL for heat client

We use the global client config for endpoint_type
which means that all clients will inherit this setting
but heat client must remain using the publicURL since
that is used for heat stack output.

Change-Id: Ibb6395e1a65cdb5e09f6a02ae03ee529da0c8d0e
Closes-Bug: #1770144
This commit is contained in:
Edward Hope-Morley 2018-05-15 15:07:59 +02:00
parent b243b71c35
commit 14a299596c
2 changed files with 10 additions and 0 deletions

View File

@ -89,4 +89,9 @@ workers = {{ workers }}
{% if use_internal_endpoints -%}
[clients]
endpoint_type = internalURL
[heat_clients]
# See LP 1770144
endpoint_type = publicURL
{%- endif %}

View File

@ -69,4 +69,9 @@ workers = {{ workers }}
{% if use_internal_endpoints -%}
[clients]
endpoint_type = internalURL
[heat_clients]
# See LP 1770144
endpoint_type = publicURL
{%- endif %}