Move [neutron] auth_url to KeystoneV3Internal

In other sections we already use the internal endpoints for
authentication urls. With this change the auth_uri in the neutron
section gets moved from KeystoneV3Admin to KeystoneV3Internal.

Change-Id: Ia553a60f57bdcd762dc0b92ebd64b91327261815
(cherry picked from commit 228710fa21)
(cherry picked from commit 7e9adc62e8)
This commit is contained in:
Martin Schuppert 2018-12-14 14:37:11 +01:00
parent 18084f30c0
commit 86074ef418
2 changed files with 8 additions and 1 deletions

View File

@ -223,7 +223,7 @@ outputs:
nova::network::neutron::dhcp_domain: ''
nova::network::neutron::neutron_password: {get_param: NeutronPassword}
nova::network::neutron::neutron_url: {get_param: [EndpointMap, NeutronInternal, uri]}
nova::network::neutron::neutron_auth_url: {get_param: [EndpointMap, KeystoneV3Admin, uri]}
nova::network::neutron::neutron_auth_url: {get_param: [EndpointMap, KeystoneV3Internal, uri]}
nova::rabbit_heartbeat_timeout_threshold: 60
nova::cinder_catalog_info: 'volumev3:cinderv3:internalURL'
nova::host: "%{hiera('fqdn_canonical')}"

View File

@ -0,0 +1,7 @@
---
fixes:
- |
In other sections we already use the internal endpoints for
authentication urls. With this change the auth_uri in the
neutron section gets moved from KeystoneV3Admin to
KeystoneV3Internal.