Remove heat_clients_keystone_uri option

The heat_clients_keystone_uri parameter has been deprecated for one year.
We can remove it.

Change-Id: I507fd2beecface5f8de35d18bfb546a653c6ef51
This commit is contained in:
ZhongShengping 2019-09-20 09:34:27 +08:00
parent e96248bca3
commit 4c35662238
2 changed files with 3 additions and 12 deletions

View File

@ -281,12 +281,6 @@
# take for evaluation.
# Defaults to $::os_service_default.
#
## DEPRECATED PARAMS
#
# [*heat_clients_keystone_uri*]
# (optional) Heat clients auth url in format like http://127.0.0.1:5000/.
# Defaults to undef.
#
class heat(
$package_ensure = 'present',
$keystone_ec2_uri = $::os_service_default,
@ -348,18 +342,12 @@ class heat(
$auth_strategy = 'keystone',
$yaql_memory_quota = $::os_service_default,
$yaql_limit_iterators = $::os_service_default,
## DEPRECATED PARAMS
$heat_clients_keystone_uri = undef,
) {
include ::heat::db
include ::heat::deps
include ::heat::params
if $heat_clients_keystone_uri {
warning('heat_clients_keystone_ur is deprecated, has no effect and will be removed in the future')
}
if $auth_strategy == 'keystone' {
include ::heat::keystone::authtoken
}

View File

@ -0,0 +1,3 @@
---
upgrade:
- Deprecated heat_clients_keystone_uri option has been removed.