Remove deprecated nova::network::neutron params
These parameter has been deprecated and can now be removed. Depends-On: https://review.opendev.org/#/c/658549/ Change-Id: I6f715979579b448f63ec49e0345adb753cf17353
This commit is contained in:
@@ -117,49 +117,15 @@ class nova::network::neutron (
|
|||||||
$vif_plugging_is_fatal = true,
|
$vif_plugging_is_fatal = true,
|
||||||
$vif_plugging_timeout = '300',
|
$vif_plugging_timeout = '300',
|
||||||
$default_floating_pool = 'nova',
|
$default_floating_pool = 'nova',
|
||||||
# DEPRECATED PARAMS
|
|
||||||
$neutron_url = undef,
|
|
||||||
$neutron_url_timeout = undef,
|
|
||||||
$firewall_driver = undef,
|
|
||||||
$dhcp_domain = undef,
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
include ::nova::deps
|
include ::nova::deps
|
||||||
|
|
||||||
if $neutron_url {
|
|
||||||
warning('nova::network::neutron::neutron_url is deprecated, nova behaviour will be default to looking up \
|
|
||||||
the neutron endpoint in the keystone catalog, please use nova::network::neutron::neutron_endpoint_override to override')
|
|
||||||
}
|
|
||||||
|
|
||||||
if $neutron_url_timeout {
|
|
||||||
warning('nova::network::neutron::neutron_url_timeout is deprecated, please use neutron_timeout instead.')
|
|
||||||
}
|
|
||||||
|
|
||||||
if $firewall_driver {
|
|
||||||
warning('nova::network::neutron::firewall_driver is deprecated and will be removed in a future release')
|
|
||||||
}
|
|
||||||
|
|
||||||
if $dhcp_domain {
|
|
||||||
warning('nova::network::neutron::dhcp_domain is deprecated and will be removed in a future release')
|
|
||||||
}
|
|
||||||
|
|
||||||
# TODO(tobias-urdin): Remove these in the T release.
|
|
||||||
nova_config {
|
|
||||||
'DEFAULT/dhcp_domain': value => $dhcp_domain;
|
|
||||||
'DEFAULT/firewall_driver': value => $firewall_driver;
|
|
||||||
}
|
|
||||||
|
|
||||||
nova_config {
|
|
||||||
'neutron/url': value => $neutron_url;
|
|
||||||
}
|
|
||||||
|
|
||||||
$neutron_timeout_real = pick($neutron_url_timeout, $neutron_timeout)
|
|
||||||
|
|
||||||
nova_config {
|
nova_config {
|
||||||
'DEFAULT/vif_plugging_is_fatal': value => $vif_plugging_is_fatal;
|
'DEFAULT/vif_plugging_is_fatal': value => $vif_plugging_is_fatal;
|
||||||
'DEFAULT/vif_plugging_timeout': value => $vif_plugging_timeout;
|
'DEFAULT/vif_plugging_timeout': value => $vif_plugging_timeout;
|
||||||
'neutron/default_floating_pool': value => $default_floating_pool;
|
'neutron/default_floating_pool': value => $default_floating_pool;
|
||||||
'neutron/timeout': value => $neutron_timeout_real;
|
'neutron/timeout': value => $neutron_timeout;
|
||||||
'neutron/project_name': value => $neutron_project_name;
|
'neutron/project_name': value => $neutron_project_name;
|
||||||
'neutron/project_domain_name': value => $neutron_project_domain_name;
|
'neutron/project_domain_name': value => $neutron_project_domain_name;
|
||||||
'neutron/region_name': value => $neutron_region_name;
|
'neutron/region_name': value => $neutron_region_name;
|
||||||
|
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- |
|
||||||
|
The deprecated parameter nova::network::neutron::neutron_url is removed and will default to looking up the
|
||||||
|
neutron endpoint in the keystone catalog, use nova::network::neutron::neutron_endpoint_override to override.
|
||||||
|
- |
|
||||||
|
The deprecated parameter nova::network::neutron::neutron_url_timeout is removed, please use neutron_timeout instead.
|
||||||
|
- |
|
||||||
|
The deprecated parameter nova::network::neutron::firewall_driver is removed.
|
||||||
|
- |
|
||||||
|
The deprecated parameter nova::network::neutron::dhcp_domain is removed.
|
@@ -93,27 +93,6 @@ describe 'nova::network::neutron' do
|
|||||||
should contain_nova_config('DEFAULT/vif_plugging_timeout').with_value(params[:vif_plugging_timeout])
|
should contain_nova_config('DEFAULT/vif_plugging_timeout').with_value(params[:vif_plugging_timeout])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with deprecated class parameters' do
|
|
||||||
before do
|
|
||||||
params.merge!(
|
|
||||||
:neutron_url => 'http://10.0.0.1:9696',
|
|
||||||
:neutron_url_timeout => '30',
|
|
||||||
:firewall_driver => 'nova.virt.firewall.IptablesFirewallDriver',
|
|
||||||
:dhcp_domain => 'foo',
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'configures neutron endpoint in nova.conf' do
|
|
||||||
should contain_nova_config('DEFAULT/dhcp_domain').with_value(params[:dhcp_domain])
|
|
||||||
should contain_nova_config('neutron/url').with_value(params[:neutron_url])
|
|
||||||
should contain_nova_config('neutron/timeout').with_value(params[:neutron_url_timeout])
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'configures Nova to use Neutron Security Groups and Firewall' do
|
|
||||||
should contain_nova_config('DEFAULT/firewall_driver').with_value(params[:firewall_driver])
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
on_supported_os({
|
on_supported_os({
|
||||||
|
Reference in New Issue
Block a user