Remove wsdl_location parameter

wsdl_location parameter is now deprecated and will be removed
in the future release.

Change-Id: I60455bafd197fc31d2b51c6244fce8a3608939e4
This commit is contained in:
zhangyangyang 2017-09-30 14:16:22 +08:00
parent c60b1b3534
commit 6881902d8b
2 changed files with 5 additions and 13 deletions

View File

@ -57,13 +57,6 @@
# (optional) Regex to match the name of a datastore.
# Defaults to $::os_service_default
#
# DEPRECATED PARAMETERS
# [*wsdl_location*]
# (optional) VIM Service WSDL Location e.g
# http://<server>/vimService.wsdl. Optional over-ride to
# default location for bug work-arounds.
# Defaults to undef
#
class nova::compute::vmware(
$host_ip,
$host_username,
@ -77,16 +70,10 @@ class nova::compute::vmware(
$insecure = $::os_service_default,
$ca_file = $::os_service_default,
$datastore_regex = $::os_service_default,
# DEPRECATED PARAMETERS
$wsdl_location = undef,
) {
include ::nova::deps
if $wsdl_location {
warning('wsdl_location is deprecated, has no effect and will be removed in the future release.')
}
nova_config {
'DEFAULT/compute_driver': value => $compute_driver;
'vmware/host_ip': value => $host_ip;

View File

@ -0,0 +1,5 @@
---
upgrade:
- Remove wsdl_location parameter
wsdl_location parameter is now deprecated and will be removed
in the future release.