From f3d57b9e402182315e63acf461520b9ba1da7285 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fran=C3=A7ois=20Charlier?= Date: Mon, 18 Mar 2013 14:56:49 +0100 Subject: [PATCH] Remove version from endpoint. The client has to specify it. --- 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 0c5f285..1a81521 100644 --- a/manifests/keystone/auth.pp +++ b/manifests/keystone/auth.pp @@ -55,9 +55,9 @@ class ceilometer::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}", } } } -- 2.45.2