From 96a2a0adffe7593e7739b8032aa8f377a14df38f Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 8 Feb 2022 22:20:00 +0900 Subject: [PATCH] Remove deprecated amqp_allow_insecure_clients ... because it was deprecated during Wallaby cycle. Change-Id: I6c8b52e3d2d94c11786debb8ea0ccb9adce1b407 --- manifests/init.pp | 10 ---------- ...e-amqp_allow_insecure_clients-b619dcc4b47808ba.yaml | 4 ++++ 2 files changed, 4 insertions(+), 10 deletions(-) create mode 100644 releasenotes/notes/remove-amqp_allow_insecure_clients-b619dcc4b47808ba.yaml diff --git a/manifests/init.pp b/manifests/init.pp index 40cb9a7..675deb0 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -231,10 +231,6 @@ # Defaults to $::os_service_default. # Deprecated, use fetcher_backend instead # -# [*amqp_allow_insecure_clients*] -# (Optional) Accept clients using either SSL or plain TCP -# Defaults to undef. -# # [*auth_section*] # (Optional) Config Section from which to load plugin specific options # Defaults to undef @@ -294,7 +290,6 @@ class cloudkitty( Optional[Hash] $metrics_config = undef, # DEPRECATED PARAMETERS $tenant_fetcher_backend = undef, - $amqp_allow_insecure_clients = undef, $auth_section = undef, $keystone_version = undef, ) { @@ -303,11 +298,6 @@ class cloudkitty( warning('The parameter cloudkitty::tenant_fetcher_backend was deprecated and has no effect. Use fetcher_backend instead.') } - if $amqp_allow_insecure_clients != undef { - warning('The amqp_allow_insecure_clients parameter is deprecated and \ -will be removed in a future release.') - } - if $auth_section != undef { warning('The cloudkitty::auth_section parameter is deprecated. Use the cloudkitty::fetcher_keystone class') } diff --git a/releasenotes/notes/remove-amqp_allow_insecure_clients-b619dcc4b47808ba.yaml b/releasenotes/notes/remove-amqp_allow_insecure_clients-b619dcc4b47808ba.yaml new file mode 100644 index 0000000..680227b --- /dev/null +++ b/releasenotes/notes/remove-amqp_allow_insecure_clients-b619dcc4b47808ba.yaml @@ -0,0 +1,4 @@ +--- +upgrade: + - | + The ``cloudkitty::amqp_allow_insecure_clients`` parameter has been removed.