Clean up baribcan::api::retry_scheduler_* parameters

... because these were deprecated during Yoga cycle[1].

[1] 0d4580b27d

Change-Id: I781d06e3ba9c9b9ab7fd8360095cdb67917f016c
This commit is contained in:
Takashi Kajinami
2022-06-23 12:36:04 +09:00
parent 3b1ecbed5c
commit 237c4b2fb0
2 changed files with 7 additions and 15 deletions

View File

@@ -232,14 +232,6 @@
#
# DEPRECATED PARAMETERS
#
# [*retry_scheduler_initial_delay_seconds*]
# (optional) Seconds (float) to wait before starting retry scheduler
# Defaults to undef
#
# [*retry_scheduler_periodic_interval_max_seconds*]
# (optional) Seconds (float) to wait between starting retry scheduler
# Defaults to undef
#
# [*client_package_ensure*]
# (optional) Desired ensure state of the client package.
# accepts latest or specific versions.
@@ -309,8 +301,6 @@ class barbican::api (
$max_limit_paging = $::os_service_default,
$default_limit_paging = $::os_service_default,
# DEPRECATED PARAMETERS
$retry_scheduler_initial_delay_seconds = undef,
$retry_scheduler_periodic_interval_max_seconds = undef,
$client_package_ensure = undef,
$use_ssl = undef,
$ca_file = undef,
@@ -386,11 +376,6 @@ class barbican::api (
'queue/server_name': value => $queue_server_name;
}
if $retry_scheduler_initial_delay_seconds != undef or $retry_scheduler_periodic_interval_max_seconds != undef {
warning('The retry_scheduler_* parameters are deprecated. Use barbican::retry_scheduler instead')
include barbican::retry_scheduler
}
# max allowed secret options
barbican_config {
'DEFAULT/max_allowed_secret_in_bytes': value => $max_allowed_secret_in_bytes;

View File

@@ -0,0 +1,7 @@
---
upgrade:
- |
The following parameters of the ``barbican::api`` class have been removed.
- ``retry_scheduler_initial_delay_seconds``
- ``retry_scheduler_periodic_interval_max_seconds``