Remove deprecated amqp_allow_insecure_clients

... because it was deprecated during Wallaby cycle.

Change-Id: Ia36d7acfca6d08a38b46adfe98790c2b9f362812
This commit is contained in:
Takashi Kajinami 2022-02-08 22:12:14 +09:00
parent e7d5127531
commit 49c163c2ac
2 changed files with 4 additions and 10 deletions

View File

@ -319,10 +319,6 @@
#
# DEPRECATED PARAMETERS
#
# [*amqp_allow_insecure_clients*]
# (Optional) Accept clients using either SSL or plain TCP
# Defaults to undef.
#
# [*allow_overlapping_ips*]
# (optional) Enables network namespaces
# Defaults to undef
@ -394,18 +390,12 @@ class neutron (
$max_allowed_address_pair = $::os_service_default,
$vlan_transparent = $::os_service_default,
# DEPRECATED PARAMETERS
$amqp_allow_insecure_clients = undef,
$allow_overlapping_ips = undef,
) {
include neutron::deps
include neutron::params
if $amqp_allow_insecure_clients != undef {
warning('The amqp_allow_insecure_clients parameter is deprecated and \
will be removed in a future release.')
}
if $allow_overlapping_ips != undef {
warning('The allow_overlapping_ips parameter is deprecated and \
will be removed in a future release.')

View File

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