Merge "Replace port 35357 with 5000"

This commit is contained in:
Zuul 2018-05-28 03:46:53 +00:00 committed by Gerrit Code Review
commit 85c92f9aa3
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@
#
# [*auth_url*]
# (Optional) The URL to use for authentication.
# Defaults to 'http://localhost:35357'
# Defaults to 'http://localhost:5000'
#
# [*project_name*]
# (Optional) Service project name
@ -183,7 +183,7 @@
class magnum::keystone::authtoken(
$password,
$username = 'magnum',
$auth_url = 'http://localhost:35357',
$auth_url = 'http://localhost:5000',
$project_name = 'services',
$user_domain_name = 'Default',
$project_domain_name = 'Default',

View File

@ -17,7 +17,7 @@ describe 'magnum::keystone::authtoken' do
it 'configure keystone_authtoken' do
is_expected.to contain_magnum_config('keystone_authtoken/username').with_value('magnum')
is_expected.to contain_magnum_config('keystone_authtoken/password').with_value('magnum_password')
is_expected.to contain_magnum_config('keystone_authtoken/auth_url').with_value('http://localhost:35357')
is_expected.to contain_magnum_config('keystone_authtoken/auth_url').with_value('http://localhost:5000')
is_expected.to contain_magnum_config('keystone_authtoken/project_name').with_value('services')
is_expected.to contain_magnum_config('keystone_authtoken/admin_user').with_value('magnum')
is_expected.to contain_magnum_config('keystone_authtoken/admin_password').with_value('magnum_password')
@ -60,7 +60,7 @@ describe 'magnum::keystone::authtoken' do
:www_authenticate_uri => 'https://10.0.0.1:9999/',
:username => 'myuser',
:password => 'mypasswd',
:auth_url => 'http://:127.0.0.1:35357',
:auth_url => 'http://:127.0.0.1:5000',
:project_name => 'service_project',
:user_domain_name => 'domainX',
:project_domain_name => 'domainX',