diff --git a/manifests/keystone/authtoken.pp b/manifests/keystone/authtoken.pp index 8019574c..466f91df 100644 --- a/manifests/keystone/authtoken.pp +++ b/manifests/keystone/authtoken.pp @@ -184,12 +184,6 @@ # (in seconds). Set to -1 to disable caching completely. Integer value # Defaults to $::os_service_default. # -# DEPRECATED PARAMETERS -# -# [*signing_dir*] -# (Optional) Directory used to cache files related to PKI tokens. -# Defaults to undef -# class octavia::keystone::authtoken( $password, $username = 'octavia', @@ -226,16 +220,10 @@ class octavia::keystone::authtoken( $region_name = $::os_service_default, $revocation_cache_time = $::os_service_default, $token_cache_time = $::os_service_default, - # DEPRECATED PARAMETERS - $signing_dir = undef, ) { include ::octavia::deps - if $signing_dir { - warning('signing_dir parameter is deprecated, has no effect and will be removed in the P release.') - } - keystone::resource::authtoken { 'octavia_config': username => $username, password => $password, diff --git a/releasenotes/notes/remove_deprecated_keystone_signing_dir_option-833cd0913febeea1.yaml b/releasenotes/notes/remove_deprecated_keystone_signing_dir_option-833cd0913febeea1.yaml new file mode 100644 index 00000000..30b68c31 --- /dev/null +++ b/releasenotes/notes/remove_deprecated_keystone_signing_dir_option-833cd0913febeea1.yaml @@ -0,0 +1,3 @@ +--- +upgrade: + - Deprecated keystone authtoken signing_dir option is removed in Pike.