diff --git a/packstack/puppet/modules/packstack/manifests/keystone/nova.pp b/packstack/puppet/modules/packstack/manifests/keystone/nova.pp index 5a4b0bd2e..f96f1a4d3 100644 --- a/packstack/puppet/modules/packstack/manifests/keystone/nova.pp +++ b/packstack/puppet/modules/packstack/manifests/keystone/nova.pp @@ -3,8 +3,7 @@ class packstack::keystone::nova () $nova_protocol = 'http' $nova_host = hiera('CONFIG_KEYSTONE_HOST_URL') $nova_port = '8774' - $nova_url = "${nova_protocol}://${nova_host}:$nova_port/v2/%(tenant_id)s" - $nova_v3_url = "${nova_protocol}://${nova_host}:$nova_port/v3" + $nova_url = "${nova_protocol}://${nova_host}:$nova_port/v2.1/%(tenant_id)s" class { '::nova::keystone::auth': region => hiera('CONFIG_KEYSTONE_REGION'), @@ -12,8 +11,5 @@ class packstack::keystone::nova () public_url => $nova_url, admin_url => $nova_url, internal_url => $nova_url, - public_url_v3 => $nova_v3_url, - admin_url_v3 => $nova_v3_url, - internal_url_v3 => $nova_v3_url, } }