Remove deprecated validate parameters from init

Change-Id: I926838347e92884f85a92d421e568f079ae7a8d4
This commit is contained in:
Tobias Urdin 2020-08-18 09:21:17 +02:00
parent 5ae2172cbc
commit ee755ad4ed
2 changed files with 5 additions and 24 deletions

View File

@ -433,26 +433,6 @@
# (Optional) Driver to use for managing tokens.
# Defaults to undef
#
# [*validate_service*]
# (Optional) Whether to validate keystone connections after
# the service is started.
# Defaults to undef
#
# [*validate_insecure*]
# (Optional) Whether to validate keystone connections
# using the --insecure option with keystone client.
# Defaults to undef
#
# [*validate_cacert*]
# (Optional) Whether to validate keystone connections
# using the specified argument with the --os-cacert option
# with keystone client.
# Defaults to undef
#
# [*validate_auth_url*]
# (Optional) The url to validate keystone against
# Defaults to undef
#
# [*database_min_pool_size*]
# (Optional) Minimum number of SQL connections to keep open in a pool.
# Defaults to: undef
@ -546,10 +526,6 @@ class keystone(
$admin_workers = undef,
$public_workers = undef,
$token_driver = undef,
$validate_service = undef,
$validate_insecure = undef,
$validate_auth_url = undef,
$validate_cacert = undef,
$database_min_pool_size = undef,
) inherits keystone::params {

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The deprecated validate_service, validate_insecure, validate_auth_url
and validate_cacert parameters in the keystone class is removed.