From dd97c786842415c93ccc0de4788cb05ab6d012db Mon Sep 17 00:00:00 2001
From: Erol Guzoglu <erol.guzoglu@kartaca.com>
Date: Fri, 29 Mar 2019 10:40:23 +0300
Subject: [PATCH] add version to OPENSTACK_KEYSTONE_URL

"v3" is supposed to be part of the OPENSTACK_KEYSTONE_URL:
https://docs.openstack.org/horizon/latest/admin/customize-configure.html#configure-the-dashboard

Closes-Bug: #1822257

Change-Id: I5fd2d36305172d351fbfa9141c7cbc7c5af98f3b
---
 ansible/roles/horizon/defaults/main.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ansible/roles/horizon/defaults/main.yml b/ansible/roles/horizon/defaults/main.yml
index 4577eb8e99..babe266dfe 100644
--- a/ansible/roles/horizon/defaults/main.yml
+++ b/ansible/roles/horizon/defaults/main.yml
@@ -90,7 +90,7 @@ horizon_dimensions: "{{ default_container_dimensions }}"
 # OpenStack
 ####################
 horizon_logging_debug: "{{ openstack_logging_debug }}"
-horizon_keystone_url: "{{ keystone_internal_url }}"
+horizon_keystone_url: "{{ keystone_internal_url }}/v3"
 
 
 ####################