Update keystone endpoint for functional tests

DevStack was updated so that the port can't be used
with the keystone URI anymore.

See I46294fb24e3c23fa19fcfd7d6c9ee8a932354702

Change-Id: I808240d534be5e4d50f3f51e6b8318cbffec9c96
This commit is contained in:
Kaitlin Farr 2017-04-26 10:48:57 -04:00
parent 89a06dd407
commit 1f1a36b612
2 changed files with 4 additions and 4 deletions

View File

@ -13,8 +13,8 @@ project_domain_name=Default
[identity]
# Replace these with values that represent your identity configuration
uri=http://localhost:5000/v2.0
uri_v3=http://localhost:5000/v3
uri=http://localhost/identity/v2.0
uri_v3=http://localhost/identity/v3
auth_version=v3
username=admin

View File

@ -26,8 +26,8 @@ def setup_config(config_file=''):
identity_group = cfg.OptGroup(name='identity')
identity_options = [
cfg.StrOpt('uri', default='http://localhost:5000/v2.0'),
cfg.StrOpt('uri_v3', default='http://localhost:5000/v3'),
cfg.StrOpt('uri', default='http://localhost/identity/v2.0'),
cfg.StrOpt('uri_v3', default='http://localhost/identity/v3'),
cfg.StrOpt('auth_version', default='v3'),
cfg.StrOpt('username', default='admin'),
cfg.StrOpt('password', default='secretadmin'),