Remove deprecated keystone authtoken revocation_cache_time option

Change-Id: Id80297afb799a230e0cca042ab1036ed78ca97e4
This commit is contained in:
ZhongShengping 2018-03-27 10:33:24 +08:00
parent 064ecaf4be
commit ae7290a272
2 changed files with 3 additions and 15 deletions

View File

@ -183,15 +183,6 @@
# (in seconds). Set to -1 to disable caching completely. Integer value # (in seconds). Set to -1 to disable caching completely. Integer value
# Defaults to $::os_service_default. # Defaults to $::os_service_default.
# #
# DEPRECATED PARAMETERS
#
# [*revocation_cache_time*]
# (Optional) Determines the frequency at which the list of revoked tokens is
# retrieved from the Identity service (in seconds). A high number of
# revocation events combined with a low cache duration may significantly
# reduce performance. Only valid for PKI tokens. Integer value
# Defaults to undef
#
class trove::keystone::authtoken( class trove::keystone::authtoken(
$username = 'trove', $username = 'trove',
$password = $::os_service_default, $password = $::os_service_default,
@ -227,8 +218,6 @@ class trove::keystone::authtoken(
$manage_memcache_package = false, $manage_memcache_package = false,
$region_name = $::os_service_default, $region_name = $::os_service_default,
$token_cache_time = $::os_service_default, $token_cache_time = $::os_service_default,
# DEPRECATED PARAMETERS
$revocation_cache_time = undef,
) { ) {
include ::trove::deps include ::trove::deps
@ -237,10 +226,6 @@ class trove::keystone::authtoken(
fail('Please set password for trove service user') fail('Please set password for trove service user')
} }
if $revocation_cache_time {
warning('revocation_cache_time parameter is deprecated, has no effect and will be removed in the future.')
}
keystone::resource::authtoken { 'trove_config': keystone::resource::authtoken { 'trove_config':
username => $username, username => $username,
password => $password, password => $password,

View File

@ -0,0 +1,3 @@
---
upgrade:
- Deprecated keystone::authtoken::revocation_cache_time option has been removed.