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:
@@ -57,13 +57,6 @@
|
|||||||
# (optional) Regex to match the name of a datastore.
|
# (optional) Regex to match the name of a datastore.
|
||||||
# Defaults to $::os_service_default
|
# 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(
|
class nova::compute::vmware(
|
||||||
$host_ip,
|
$host_ip,
|
||||||
$host_username,
|
$host_username,
|
||||||
@@ -77,16 +70,10 @@ class nova::compute::vmware(
|
|||||||
$insecure = $::os_service_default,
|
$insecure = $::os_service_default,
|
||||||
$ca_file = $::os_service_default,
|
$ca_file = $::os_service_default,
|
||||||
$datastore_regex = $::os_service_default,
|
$datastore_regex = $::os_service_default,
|
||||||
# DEPRECATED PARAMETERS
|
|
||||||
$wsdl_location = undef,
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
include ::nova::deps
|
include ::nova::deps
|
||||||
|
|
||||||
if $wsdl_location {
|
|
||||||
warning('wsdl_location is deprecated, has no effect and will be removed in the future release.')
|
|
||||||
}
|
|
||||||
|
|
||||||
nova_config {
|
nova_config {
|
||||||
'DEFAULT/compute_driver': value => $compute_driver;
|
'DEFAULT/compute_driver': value => $compute_driver;
|
||||||
'vmware/host_ip': value => $host_ip;
|
'vmware/host_ip': value => $host_ip;
|
||||||
|
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- Remove wsdl_location parameter
|
||||||
|
wsdl_location parameter is now deprecated and will be removed
|
||||||
|
in the future release.
|
Reference in New Issue
Block a user