Remove deprecated keystone authtoken revocation_cache_time option
Change-Id: I93b272477a2d0b1ac2caa6e3e5d0d49e724cbd1b
This commit is contained in:
parent
d90027370b
commit
64a6eaacce
@ -180,15 +180,6 @@
|
||||
# (in seconds). Set to -1 to disable caching completely. Integer value
|
||||
# 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 watcher::keystone::authtoken (
|
||||
$password = $::os_service_default,
|
||||
$username = 'watcher',
|
||||
@ -224,8 +215,6 @@ class watcher::keystone::authtoken (
|
||||
$manage_memcache_package = false,
|
||||
$region_name = $::os_service_default,
|
||||
$token_cache_time = $::os_service_default,
|
||||
# DEPRECATED PARAMETERS
|
||||
$revocation_cache_time = undef,
|
||||
) {
|
||||
|
||||
include ::watcher::deps
|
||||
@ -234,10 +223,6 @@ class watcher::keystone::authtoken (
|
||||
fail('Please set password for watcher service user')
|
||||
}
|
||||
|
||||
if $revocation_cache_time {
|
||||
warning('revocation_cache_time parameter is deprecated, has no effect and will be removed in the future.')
|
||||
}
|
||||
|
||||
validate_string($password)
|
||||
|
||||
keystone::resource::authtoken { 'watcher_config':
|
||||
|
@ -0,0 +1,3 @@
|
||||
---
|
||||
upgrade:
|
||||
- Deprecated keystone::authtoken::revocation_cache_time option has been removed.
|
Loading…
Reference in New Issue
Block a user