Remove some deprecated auth and identity options

Below options are deprecated on 2015, in 87fc7e9ac0
and c786213f95,
so it's safe to delete them now.
  * identity.endpoint_type
  * auth.tenant_isolation_domain_name

Change-Id: I64b389032472447aa3a3d38e081f9a2b000847be
This commit is contained in:
zhufl 2019-06-06 15:07:05 +08:00
parent be84d6a5e8
commit f4d3592454
2 changed files with 10 additions and 7 deletions

View File

@ -0,0 +1,8 @@
upgrade:
- |
Remove deprecated config option ``endpoint_type`` from
``identity`` group. Use ``v2_public_endpoint_type`` from
``identity`` group instead.
Remove deprecated config option ``tenant_isolation_domain_name``
from ``auth`` group. Use ``default_credentials_domain_name`` from
``auth`` group instead.

View File

@ -69,10 +69,7 @@ AuthGroup = [
cfg.StrOpt('default_credentials_domain_name',
default='Default',
help="Default domain used when getting v3 credentials. "
"This is the name keystone uses for v2 compatibility.",
deprecated_opts=[cfg.DeprecatedOpt(
'tenant_isolation_domain_name',
group='auth')]),
"This is the name keystone uses for v2 compatibility."),
cfg.BoolOpt('create_isolated_networks',
default=True,
help="If use_dynamic_credentials is set to True and Neutron "
@ -139,9 +136,7 @@ IdentityGroup = [
choices=['public', 'admin', 'internal',
'publicURL', 'adminURL', 'internalURL'],
help="The public endpoint type to use for OpenStack Identity "
"(Keystone) API v2",
deprecated_opts=[cfg.DeprecatedOpt('endpoint_type',
group='identity')]),
"(Keystone) API v2"),
cfg.StrOpt('v3_endpoint_type',
default='adminURL',
choices=['public', 'admin', 'internal',