Remove deprecated keystone authtoken revocation_cache_time option

Change-Id: I390ec99c86b16d328cdfbacf8caa000d3e665637
This commit is contained in:
ZhongShengping 2018-03-27 10:33:23 +08:00
parent f46f1cd070
commit 7623634cb2
2 changed files with 3 additions and 15 deletions

View File

@ -178,15 +178,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 sahara::keystone::authtoken(
$username = 'sahara',
$password = $::os_service_default,
@ -222,8 +213,6 @@ class sahara::keystone::authtoken(
$manage_memcache_package = false,
$region_name = $::os_service_default,
$token_cache_time = $::os_service_default,
# DEPRECATED PARAMETERS
$revocation_cache_time = undef,
) {
include ::sahara::deps
@ -236,10 +225,6 @@ class sahara::keystone::authtoken(
$auth_uri_real = pick($::sahara::auth_uri,$auth_uri)
$auth_url_real = pick($::sahara::identity_uri,$auth_url)
if $revocation_cache_time {
warning('revocation_cache_time parameter is deprecated, has no effect and will be removed in the future.')
}
keystone::resource::authtoken { 'sahara_config':
username => $username_real,
password => $password_real,

View File

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