Remove deprecated amqp_allow_insecure_clients

... because it was deprecated during Wallaby cycle.

Change-Id: Ia8422e02d23e1e5c4c5dc530042f1b9e9a020c9a
This commit is contained in:
Takashi Kajinami 2022-02-08 21:53:58 +09:00
parent 7f91fe0769
commit 7b33c0c74e
2 changed files with 4 additions and 13 deletions

View File

@ -185,12 +185,6 @@
# in the aodh config. # in the aodh config.
# Defaults to false. # Defaults to false.
# #
# DEPRECATED PARAMETERS
#
# [*amqp_allow_insecure_clients*]
# (Optional) Accept clients using either SSL or plain TCP
# Defaults to undef.
#
class aodh ( class aodh (
$package_ensure = 'present', $package_ensure = 'present',
$alarm_history_time_to_live = $::os_service_default, $alarm_history_time_to_live = $::os_service_default,
@ -230,18 +224,11 @@ class aodh (
$notification_driver = $::os_service_default, $notification_driver = $::os_service_default,
$notification_topics = $::os_service_default, $notification_topics = $::os_service_default,
$purge_config = false, $purge_config = false,
# DEPRECATED PARAMETERS
$amqp_allow_insecure_clients = undef,
) inherits aodh::params { ) inherits aodh::params {
include aodh::deps include aodh::deps
include aodh::db include aodh::db
if $amqp_allow_insecure_clients != undef {
warning('The amqp_allow_insecure_clients parameter is deprecated and \
will be removed in a future release.')
}
package { 'aodh': package { 'aodh':
ensure => $package_ensure, ensure => $package_ensure,
name => $::aodh::params::common_package_name, name => $::aodh::params::common_package_name,

View File

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