Merge "Remove single_tenant_mode parameter"

This commit is contained in:
Zuul 2024-04-25 15:14:13 +00:00 committed by Gerrit Code Review
commit f06b82cb5c
2 changed files with 4 additions and 13 deletions

View File

@ -291,13 +291,6 @@
# (optional) The state of the package.
# Defaults to 'present'
#
# DEPRECATED PARAMETERS
#
# [*single_tenant_mode*]
# (optional) If set to true, will configure Trove to work in single
# tenant mode.
# Defaults to undef.
#
class trove(
$default_transport_url = $facts['os_service_default'],
$notification_transport_url = $facts['os_service_default'],
@ -360,18 +353,12 @@ class trove(
$volume_rootdisk_support = $facts['os_service_default'],
$volume_rootdisk_size = $facts['os_service_default'],
$package_ensure = 'present',
# DEPRECATED PARAMETERS
$single_tenant_mode = undef,
) {
include trove::deps
include trove::policy
include trove::params
if $single_tenant_mode != undef {
warning('The single_tenant_mode parameter is deprecated and has no effect.')
}
package { 'trove':
ensure => $package_ensure,
name => $::trove::params::common_package_name,

View File

@ -0,0 +1,4 @@
---
upgrade:
- |
The deprecated ``trove::single_tenant_mode`` parameter has been removed.