Remove deprecated parameter for whitebox tempest plugin

... because it was deprecated during the previous cycle by [1].

[1] 9f2d6ea650

Change-Id: Iacb4a192fbd1573d89f62890bc0ef80998e41cd3
This commit is contained in:
Takashi Kajinami
2022-11-15 14:56:44 +09:00
parent d42c8a1e24
commit 786ed8421d
2 changed files with 4 additions and 7 deletions

View File

@@ -267,8 +267,6 @@
# Defaults to false
# [*glance_v2*]
# Defaults to true
# [*whitebox_db_uri*]
# Defaults to undef
#
class tempest(
$package_ensure = 'present',
@@ -433,7 +431,6 @@ class tempest(
# DEPRECATED PARAMETERS
$glance_v1 = undef,
$glance_v2 = undef,
$whitebox_db_uri = undef,
) {
if $glance_v1 != undef {
@@ -444,10 +441,6 @@ class tempest(
warning('The glance_v2 parameter has been deprecated and will be removed in a future release.')
}
if $whitebox_db_uri != undef {
warning('The whitebox_db_uri parameter has been deprecated and has no effect.')
}
include tempest::params
include openstacklib::openstackclient

View File

@@ -0,0 +1,4 @@
---
upgrade:
- |
The ``tempest::whitebox_db_uri`` parameter has been removed.