ceilometer: Remove deprecated group parameter

This parameter was deprecated during the previous cycle[1] and has had
no effect since then.

[1] 152587fd2a

Change-Id: I968efcf3e25199f78559d1e1154a19f8772884c7
This commit is contained in:
Takashi Kajinami 2023-01-17 14:03:27 +09:00
parent 4418d8a0c1
commit d72f4b7535
2 changed files with 5 additions and 12 deletions

View File

@ -151,12 +151,6 @@
# (string value)
# Defaults to $::os_service_default
#
# == DEPRECATED
#
# [*group*]
# Group name to add to 'swift' user.
# Defaults to undef
#
# == Examples
#
# == Authors
@ -199,18 +193,12 @@ class swift::proxy::ceilometer(
$kombu_reconnect_delay = $::os_service_default,
$kombu_failover_strategy = $::os_service_default,
$kombu_compression = $::os_service_default,
# DEPRECATED PARAMETERS
$group = undef,
) inherits swift {
include swift::deps
Package['python-ceilometermiddleware'] ~> Service<| title == 'swift-proxy-server' |>
if $group != undef {
warning('The group parameer has been deprecated and has no effect now.')
}
if $password == undef {
warning('Usage of the default password is deprecated and will be removed in a future release. \
Please set password parameter')

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The deprecated ``swift::proxy::ceilometer::group`` parameter has been
removed.