From 51dc02d14580747b360bfdba2e3f8f9219134ac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Charlier?= Date: Tue, 18 Dec 2012 16:57:27 +0100 Subject: [PATCH] Glance's Keystone endpoint does not need the '/v1' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As said in [1], “This is useless and causes problem with library using glanceclient. Glance has already a workaround for this […]” [1] https://review.openstack.org/#/c/18325/ --- manifests/keystone/auth.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/keystone/auth.pp b/manifests/keystone/auth.pp index bf804eeb..9eb31e29 100644 --- a/manifests/keystone/auth.pp +++ b/manifests/keystone/auth.pp @@ -50,9 +50,9 @@ class glance::keystone::auth( if $configure_endpoint { keystone_endpoint { "${region}/$auth_name": ensure => present, - public_url => "${public_protocol}://${public_address}:${port}/v1", - admin_url => "http://${admin_address}:${port}/v1", - internal_url => "http://${internal_address}:${port}/v1", + public_url => "${public_protocol}://${public_address}:${port}", + admin_url => "http://${admin_address}:${port}", + internal_url => "http://${internal_address}:${port}", } } }