From 7d263e20cf228949b013a333ed1e89d0fb7c3462 Mon Sep 17 00:00:00 2001
From: Eduardo Gonzalez <dabarren@gmail.com>
Date: Wed, 8 Aug 2018 15:42:30 +0200
Subject: [PATCH] Remove keystone version in tacker.conf

Tacker is failing registering VIM monitoring
into mistral because the v3 in the auth url.

The auth url is being used auth_url + '/v3' in the code,
ending in a http://url:35357/v3/v3

https://github.com/openstack/tacker/blob/210d8f93bb5e7e179bff176d98d3079ab7f33ca0/tacker/nfvo/nfvo_plugin.py#L93


Change-Id: If5abbee1377ecdb2913a42bdfa77e7fbbfbe9367
---
 ansible/roles/tacker/templates/tacker.conf.j2 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ansible/roles/tacker/templates/tacker.conf.j2 b/ansible/roles/tacker/templates/tacker.conf.j2
index 84e803bde8..2320582a0f 100644
--- a/ansible/roles/tacker/templates/tacker.conf.j2
+++ b/ansible/roles/tacker/templates/tacker.conf.j2
@@ -30,8 +30,8 @@ connection = mysql+pymysql://{{ tacker_database_user }}:{{ tacker_database_passw
 max_retries = -1
 
 [keystone_authtoken]
-www_authenticate_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}/v3
-auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}/v3
+www_authenticate_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
+auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
 auth_type = password
 project_domain_name = {{ default_project_domain_id }}
 user_domain_name = {{ default_user_domain_id }}