manila: set "neutron_admin_auth_url" correctly

It was being set using NeutronAdmin endpoint but it is an
authorization url.  Set it using KeystoneInternal endpoint.

Change-Id: I23f4a895628ac909a1fe1f93cecefa84f25858b1
Closes-Bug: #1712908
(cherry picked from commit 7380183cf5)
This commit is contained in:
Tom Barron 2017-08-24 15:55:41 -04:00 committed by Emilien Macchi
parent 1fd5d9ea8b
commit bdccc1cb76
2 changed files with 5 additions and 1 deletions

View File

@ -70,7 +70,7 @@ outputs:
manila::compute::nova::nova_admin_password: {get_param: NovaPassword}
manila::compute::nova::nova_admin_tenant_name: 'service'
manila::network::neutron::neutron_url: {get_param: [EndpointMap, NeutronInternal, uri]}
manila::network::neutron::neutron_admin_auth_url: {get_param: [EndpointMap, NeutronAdmin, uri]}
manila::network::neutron::neutron_admin_auth_url: {get_param: [EndpointMap, KeystoneInternal, uri]}
manila::network::neutron::neutron_admin_password: {get_param: NeutronPassword}
step_config: |
include ::tripleo::profile::base::manila::scheduler

View File

@ -0,0 +1,4 @@
---
fixes:
- The "neutron_admin_auth_url" is now properly set using KeystoneInternal
rather than using the NeutronAdmin endpoint.