Replace port 35357 with 5000

Now that the v2.0 API has been removed, we don't have a reason to
include deployment instructions for two separate applications on
different ports.

Change-Id: Id4cccbb31bcaef6343e90b504438e31bbc0f69db
This commit is contained in:
qiaomin 2018-05-13 00:46:37 +08:00
parent b67d27a29e
commit a6f0c70c3f
2 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,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
@ -187,7 +187,7 @@
class barbican::keystone::authtoken(
$password = $::os_service_default,
$username = 'barbican',
$auth_url = 'http://localhost:35357',
$auth_url = 'http://localhost:5000',
$project_name = 'services',
$user_domain_name = 'Default',
$project_domain_name = 'Default',

View File

@ -32,7 +32,7 @@ describe 'barbican::keystone::authtoken' do
it 'configure keystone_authtoken' do
is_expected.to contain_barbican_config('keystone_authtoken/username').with_value('barbican')
is_expected.to contain_barbican_config('keystone_authtoken/password').with_value('barbican_password')
is_expected.to contain_barbican_config('keystone_authtoken/auth_url').with_value('http://localhost:35357')
is_expected.to contain_barbican_config('keystone_authtoken/auth_url').with_value('http://localhost:5000')
is_expected.to contain_barbican_config('keystone_authtoken/project_name').with_value('services')
is_expected.to contain_barbican_config('keystone_authtoken/user_domain_name').with_value('Default')
is_expected.to contain_barbican_config('keystone_authtoken/project_domain_name').with_value('Default')
@ -72,7 +72,7 @@ describe 'barbican::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',