Remove deprecated watcher::use_ssl

This parameter was deprecated during the previous cycle because it has
been unused[1].

[1] 513071c1cb

Change-Id: I40210235134cad7a94819a29de80ca1c66742dc7
This commit is contained in:
Takashi Kajinami 2024-04-19 01:30:42 +09:00
parent ccb8d9c12e
commit 087af65e13
2 changed files with 5 additions and 11 deletions

View File

@ -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 <daniel.pawlik@corp.ovh.com>
@ -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

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The deprecated and ineffective ``watcher::use_ssl`` parameter has been
removed.