Remove deprecated amqp_allow_insecure_clients

... because it was deprecated during Wallaby cycle.

Change-Id: I6cdae966ac7bcddbf3510af77e462dec2944ad9c
This commit is contained in:
Takashi Kajinami 2022-02-08 22:17:19 +09:00
parent 85e5488df2
commit 93cdf4a66e
2 changed files with 4 additions and 13 deletions

View File

@ -180,12 +180,6 @@
# in the octavia config.
# Defaults to false.
#
# DEPRECATED PARAMETERS
#
# [*amqp_allow_insecure_clients*]
# (Optional) Accept clients using either SSL or plain TCP
# Defaults to undef.
#
class octavia (
$package_ensure = 'present',
$default_transport_url = $::os_service_default,
@ -224,18 +218,11 @@ class octavia (
$notification_topics = $::os_service_default,
$topic = 'octavia-rpc',
$purge_config = false,
# DEPRECATED PARAMETERS
$amqp_allow_insecure_clients = undef,
) inherits octavia::params {
include octavia::deps
include octavia::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 { 'octavia':
ensure => $package_ensure,
name => $::octavia::params::common_package_name,

View File

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