manila: set "neutron_admin_auth_url" correctly
authorTom Barron <tpb@dyncloud.net>
Thu, 24 Aug 2017 19:55:41 +0000 (15:55 -0400)
committerEmilien Macchi <emilien@redhat.com>
Tue, 5 Sep 2017 04:52:43 +0000 (04:52 +0000)
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 7380183cf590b74f5ad84bb40a8afa08979c235b)

puppet/services/manila-scheduler.yaml
releasenotes/notes/fix-neutron_admin_auth_url-c88224251d8eb807.yaml [new file with mode: 0644]

index 7d43f68..364a1a3 100644 (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
diff --git a/releasenotes/notes/fix-neutron_admin_auth_url-c88224251d8eb807.yaml b/releasenotes/notes/fix-neutron_admin_auth_url-c88224251d8eb807.yaml
new file mode 100644 (file)
index 0000000..fa4074b
--- /dev/null
@@ -0,0 +1,4 @@
+---
+fixes:
+  - The "neutron_admin_auth_url" is now properly set using KeystoneInternal
+    rather than using the NeutronAdmin endpoint.