Remove deprecated keystone authtoken revocation_cache_time option
Change-Id: Idb855cbd0c1192aa42f735c6a1af7004f0d0c1de
This commit is contained in:
@@ -177,15 +177,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 octavia::keystone::authtoken(
|
class octavia::keystone::authtoken(
|
||||||
$password,
|
$password,
|
||||||
$username = 'octavia',
|
$username = 'octavia',
|
||||||
@@ -221,15 +212,10 @@ class octavia::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,
|
||||||
$revocation_cache_time = undef,
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
include ::octavia::deps
|
include ::octavia::deps
|
||||||
|
|
||||||
if $revocation_cache_time {
|
|
||||||
warning('revocation_cache_time parameter is deprecated, has no effect and will be removed in the future.')
|
|
||||||
}
|
|
||||||
|
|
||||||
keystone::resource::authtoken { 'octavia_config':
|
keystone::resource::authtoken { 'octavia_config':
|
||||||
username => $username,
|
username => $username,
|
||||||
password => $password,
|
password => $password,
|
||||||
|
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- Deprecated keystone::authtoken::revocation_cache_time option has been removed.
|
Reference in New Issue
Block a user