Remove deprecated tenant_fetcher_backend

... because it was deprecated during Victoria cycle[1].

[1] d58a0a25ed

Change-Id: I29bbc0bb81d1fbdfd17e82667cee34d786cd1828
This commit is contained in:
Takashi Kajinami 2022-06-26 17:14:24 +09:00
parent 52f40f4a2e
commit 357eaf6147
2 changed files with 4 additions and 10 deletions

View File

@ -226,11 +226,6 @@
#
# DEPRECATED PARAMETERS
#
# [*tenant_fetcher_backend*]
# (Optional) Driver used to fetch tenant list.
# Defaults to $::os_service_default.
# Deprecated, use fetcher_backend instead
#
# [*auth_section*]
# (Optional) Config Section from which to load plugin specific options
# Defaults to undef
@ -289,15 +284,10 @@ class cloudkitty(
$fetcher_backend = $::os_service_default,
Optional[Hash] $metrics_config = undef,
# DEPRECATED PARAMETERS
$tenant_fetcher_backend = undef,
$auth_section = undef,
$keystone_version = undef,
) {
if $tenant_fetcher_backend != undef {
warning('The parameter cloudkitty::tenant_fetcher_backend was deprecated and has no effect. Use fetcher_backend instead.')
}
if $auth_section != undef {
warning('The cloudkitty::auth_section parameter is deprecated. Use the cloudkitty::fetcher_keystone class')
}

View File

@ -0,0 +1,4 @@
---
upgrade:
- |
The ``cloudkitty::tenant_fetcher_backend`` parameter has been removed.