Remove deprecated neutron parameters
external_network_bridge and mac_generation_retries were deprecated and have no effect so remove them Change-Id: Ic2c791fcff2e59ac579020c1b87f2365402c2aae Partial-Bug: #1477967
This commit is contained in:
parent
3a2cc9e24a
commit
e8e9a32065
@ -33,7 +33,6 @@ class openstack_tasks::openstack_network::agents::l3 {
|
||||
class { '::neutron::agents::l3':
|
||||
debug => $debug,
|
||||
metadata_port => $metadata_port,
|
||||
external_network_bridge => ' ',
|
||||
manage_service => true,
|
||||
enabled => true,
|
||||
agent_mode => $agent_mode,
|
||||
|
@ -84,7 +84,6 @@ class openstack_tasks::openstack_network::common_config {
|
||||
core_plugin => $core_plugin,
|
||||
service_plugins => $service_plugins,
|
||||
allow_overlapping_ips => true,
|
||||
mac_generation_retries => '32',
|
||||
dhcp_lease_duration => $dhcp_lease_duration,
|
||||
dhcp_agents_per_network => '2',
|
||||
report_interval => $neutron_config['neutron_report_interval'],
|
||||
|
@ -55,9 +55,6 @@ describe manifest do
|
||||
it { should contain_class('neutron::agents::l3').with(
|
||||
'debug' => Noop.hiera('debug', true)
|
||||
)}
|
||||
it { should contain_class('neutron::agents::l3').with(
|
||||
'external_network_bridge' => ' ' # should be present and empty
|
||||
)}
|
||||
it { should_not contain_cluster__neutron__l3('default-l3') }
|
||||
|
||||
include_examples 'override_resources'
|
||||
@ -90,9 +87,6 @@ describe manifest do
|
||||
it { should contain_class('neutron::agents::l3').with(
|
||||
'debug' => Noop.hiera('debug', true)
|
||||
)}
|
||||
it { should contain_class('neutron::agents::l3').with(
|
||||
'external_network_bridge' => ' ' # should be present and empty
|
||||
)}
|
||||
|
||||
if ha_agent
|
||||
it { should contain_cluster__neutron__l3('default-l3').with(
|
||||
|
@ -42,7 +42,6 @@ describe manifest do
|
||||
it { should contain_class('neutron').with('report_interval' => neutron_config['neutron_report_interval'])}
|
||||
it { should contain_class('neutron').with('dhcp_agents_per_network' => '2')}
|
||||
it { should contain_class('neutron').with('dhcp_lease_duration' => neutron_config['L3'].fetch('dhcp_lease_duration', '600'))}
|
||||
it { should contain_class('neutron').with('mac_generation_retries' => '32')}
|
||||
it { should contain_class('neutron').with('allow_overlapping_ips' => 'true')}
|
||||
it { should contain_class('neutron').with('base_mac' => neutron_config['L2']['base_mac'])}
|
||||
it { should contain_class('neutron').with('core_plugin' => 'neutron.plugins.ml2.plugin.Ml2Plugin')}
|
||||
|
Loading…
Reference in New Issue
Block a user