From 49c163c2acfdb34d57b37667f6e5d0d01d43b653 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 8 Feb 2022 22:12:14 +0900 Subject: [PATCH] Remove deprecated amqp_allow_insecure_clients ... because it was deprecated during Wallaby cycle. Change-Id: Ia36d7acfca6d08a38b46adfe98790c2b9f362812 --- manifests/init.pp | 10 ---------- ...e-amqp_allow_insecure_clients-99d2ff0535f6360a.yaml | 4 ++++ 2 files changed, 4 insertions(+), 10 deletions(-) create mode 100644 releasenotes/notes/remove-amqp_allow_insecure_clients-99d2ff0535f6360a.yaml diff --git a/manifests/init.pp b/manifests/init.pp index 866a88a45..506266485 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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.') diff --git a/releasenotes/notes/remove-amqp_allow_insecure_clients-99d2ff0535f6360a.yaml b/releasenotes/notes/remove-amqp_allow_insecure_clients-99d2ff0535f6360a.yaml new file mode 100644 index 000000000..d231c450d --- /dev/null +++ b/releasenotes/notes/remove-amqp_allow_insecure_clients-99d2ff0535f6360a.yaml @@ -0,0 +1,4 @@ +--- +upgrade: + - | + The ``neutron::amqp_allow_insecure_clients`` parameter has been removed.