Remove deprecated network_device_mtu option

The network_device_mtu option in Nova is deprecated for removal
in 13.0.0 since network MTU should be specified when creating
the network.

Change-Id: I6c9aed26052c579af573e9f9f3d4df0a0fcc0e0b
This commit is contained in:
ZhongShengping 2016-09-19 16:47:16 +08:00
parent e42e6d25bc
commit 5afcda404a
1 changed files with 0 additions and 9 deletions

View File

@ -136,10 +136,6 @@
# (optional) The availability zone to show internal services under.
# Defaults to undef
#
# [*network_device_mtu*]
# (optional) Deprecated. The MTU size for the interfaces managed by nova
# Defaults to undef
#
# [*compute_manager*]
# Deprecated. Compute manager
# The driver that will manage the running instances.
@ -177,7 +173,6 @@ class nova::compute (
$default_availability_zone = undef,
$default_schedule_zone = undef,
$internal_service_availability_zone = undef,
$network_device_mtu = undef,
$compute_manager = $::os_service_default,
) {
@ -199,10 +194,6 @@ future release. Use default_schedule_zone parameter of nova class instead.")
removed in a future release. Use internal_service_availability_zone parameter of nova class instead.")
}
if $network_device_mtu {
warning('network_device_mtu parameter is deprecated, has no effect and will be removed in a future release.')
}
if $compute_manager {
warning("compute_manager is marked as deprecated in Nova but still needed when Ironic \
is used. It will be removed once Nova removes it.")