diff --git a/manifests/compute/vmware.pp b/manifests/compute/vmware.pp index 53586d225..754637b2f 100644 --- a/manifests/compute/vmware.pp +++ b/manifests/compute/vmware.pp @@ -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:///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; diff --git a/releasenotes/notes/remove_wsdl_location-29bbd24e91c82bea.yaml b/releasenotes/notes/remove_wsdl_location-29bbd24e91c82bea.yaml new file mode 100644 index 000000000..e6db51d8d --- /dev/null +++ b/releasenotes/notes/remove_wsdl_location-29bbd24e91c82bea.yaml @@ -0,0 +1,5 @@ +--- +upgrade: + - Remove wsdl_location parameter + wsdl_location parameter is now deprecated and will be removed + in the future release. \ No newline at end of file