neutron: configure authtoken auth_uri versionless

configure neutron authtoken to use auth_uri with versionless endpoint,
which is the right way to configure this parameter and move forward with
keystone v3.

Change-Id: Ief045b4b6aa34c23aafa582561731549bfc54183
This commit is contained in:
Emilien Macchi 2017-03-20 19:05:26 -04:00 committed by Javier Pena
parent 56cce56c7f
commit 5dee1c4879
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ class packstack::neutron::api ()
class { '::neutron::keystone::authtoken':
username => 'neutron',
password => $neutron_user_password,
auth_uri => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),
auth_uri => hiera('CONFIG_KEYSTONE_PUBLIC_URL_VERSIONLESS'),
auth_url => hiera('CONFIG_KEYSTONE_ADMIN_URL'),
project_name => 'services',
}

View File

@ -17,7 +17,7 @@ class packstack::provision::bridge ()
class { '::neutron::keystone::authtoken':
username => 'neutron',
password => $neutron_user_password,
auth_uri => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),
auth_uri => hiera('CONFIG_KEYSTONE_PUBLIC_URL_VERSIONLESS'),
auth_url => hiera('CONFIG_KEYSTONE_ADMIN_URL'),
project_name => 'services',
}