Remove verbose

Since we are in Ocata we should remove the
verbose option that was deprecated

Change-Id: I31b298548d5e9688bac8554bb9d3d611a14157ab
This commit is contained in:
Iury Gregory Melo Ferreira 2016-09-27 19:50:18 -03:00
parent 927f492ca5
commit 1c5225743b
2 changed files with 4 additions and 9 deletions

View File

@ -176,9 +176,6 @@
# Defaults to $::os_service_default
#
# DEPREACTED PARAMETERS
# [*verbose*]
# Deprecated.
# Defaults to undef
# [*tenant_name*]
# Defaults to undef
# [*alt_tenant_name*]
@ -188,7 +185,6 @@
# [*allow_tenant_isolation*]
# Defaults to undef
#
class tempest(
$install_from_source = true,
$git_clone = true,
@ -303,7 +299,6 @@ class tempest(
# designate options
$designate_nameservers = undef,
# DEPRECATED PARAMETERS
$verbose = undef,
$tenant_name = undef,
$alt_tenant_name = undef,
$admin_tenant_name = undef,
@ -317,10 +312,6 @@ class tempest(
$tempest_roles_real = $::os_service_default
}
if $verbose {
warning('verbose is deprecated, has no effect and will be removed after Newton cycle.')
}
if $tenant_name {
warning('The tempest::tenant_name parameter is deprecated, use tempest::project_name instead.')
$project_name_real = $tenant_name

View File

@ -0,0 +1,4 @@
---
other:
- The verbose option was marked to be removed in Ocata,
in Newton the option was deprecated.