From 087af65e134ee7534bba63b83da4cd25750e6f67 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 19 Apr 2024 01:30:42 +0900 Subject: [PATCH] Remove deprecated watcher::use_ssl This parameter was deprecated during the previous cycle because it has been unused[1]. [1] 513071c1cba170889df55cb3ca8bc60b80668fc2 Change-Id: I40210235134cad7a94819a29de80ca1c66742dc7 --- manifests/init.pp | 11 ----------- .../notes/remove-use_ssl-f041e852b691608b.yaml | 5 +++++ 2 files changed, 5 insertions(+), 11 deletions(-) create mode 100644 releasenotes/notes/remove-use_ssl-f041e852b691608b.yaml diff --git a/manifests/init.pp b/manifests/init.pp index 2346338..d91c7fc 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -204,11 +204,6 @@ # in the watcher config. # Defaults to false. # -# DEPRECATED PARAMETERS -# -# [*use_ssl*] -# (optional) Enable SSL on the API server. -# # === Authors # # Daniel Pawlik @@ -258,16 +253,10 @@ class watcher ( $notification_transport_url = $facts['os_service_default'], $notification_driver = $facts['os_service_default'], $notification_topics = $facts['os_service_default'], - # DEPRECATED PARAMETERS - $use_ssl = undef, ) { include openstacklib::openstackclient - if $use_ssl != undef { - warning('The use_ssl parameter is deprecated and will be removed.') - } - include watcher::deps include watcher::params include watcher::policy diff --git a/releasenotes/notes/remove-use_ssl-f041e852b691608b.yaml b/releasenotes/notes/remove-use_ssl-f041e852b691608b.yaml new file mode 100644 index 0000000..3640ffb --- /dev/null +++ b/releasenotes/notes/remove-use_ssl-f041e852b691608b.yaml @@ -0,0 +1,5 @@ +--- +upgrade: + - | + The deprecated and ineffective ``watcher::use_ssl`` parameter has been + removed.