Update default configuration values related to Keystone

As of the Queens release, Keystone support for Identity API v2.0 has
been removed [1]. This patch updates default configuration values to
reflect this change.

[1] https://docs.openstack.org/keystone/latest/contributor/http-api.html

Change-Id: I4b717e60e501ce749cae56a868fd50cefb175a9c
This commit is contained in:
wu.chunyang 2018-05-12 23:57:36 +08:00 committed by Pierre Riteau
parent 60956d5648
commit 66e8160a38
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ os_opts = [
help='IP or hostname of machine on which OpenStack '
'Identity service is located'),
cfg.StrOpt('os_auth_port',
default='35357',
default='5000',
help='Port of OpenStack Identity service.'),
cfg.StrOpt('os_auth_prefix',
default='',
@ -56,7 +56,7 @@ os_opts = [
default='admin',
help='Name of project where the user is admin.'),
cfg.StrOpt('os_auth_version',
default='v2.0',
default='v3',
help='Blazar uses API v3 to allow trusts using.'),
cfg.StrOpt('os_admin_user_domain_name',
default='Default',