Merge "Set DhcpAgentNotification to be "false" by default"

This commit is contained in:
Zuul 2021-09-16 18:54:24 +00:00 committed by Gerrit Code Review
commit 39cac17547
10 changed files with 16 additions and 2 deletions

View File

@ -78,6 +78,7 @@ parameter_defaults:
NeutronServicePlugins: 'router,qos,segments,trunk'
NeutronVniRanges: ['1:4094', ]
NeutronEnableDVR: false
DhcpAgentNotification: true
KernelIpNonLocalBind: 0
Debug: true
DockerPuppetDebug: True

View File

@ -22,6 +22,7 @@ resource_registry:
OS::TripleO::Services::SwiftStorage: OS::Heat::None
OS::TripleO::Services::SwiftRingBuilder: OS::Heat::None
parameter_defaults:
DhcpAgentNotification: true
NeutronMechanismDrivers: ['openvswitch']
NeutronTypeDrivers: 'vxlan,vlan,flat,gre'
NeutronNetworkType: 'vxlan'

View File

@ -22,6 +22,7 @@ parameter_defaults:
NeutronMechanismDrivers: ovn,ansible
NeutronNetworkType: vlan
NeutronTypeDrivers: local,geneve,vlan,flat
DhcpAgentNotification: true
IronicApiMaxRetries: 180
IronicDefaultNetworkInterface: neutron
IronicAutomatedClean: false

View File

@ -13,7 +13,7 @@ parameters:
default: 0
description: The number of neutron dhcp agents to schedule per network
DhcpAgentNotification:
default: true
default: false
description: Whether or not to enable DHCP agent notifications.
type: boolean
NeutronDnsDomain:

View File

@ -39,6 +39,7 @@ parameter_defaults:
NeutronServicePlugins: 'router,qos,segments,trunk'
NeutronVniRanges: ['1:4094', ]
KernelIpNonLocalBind: 0
DhcpAgentNotification: true
# Setting NeutronEnableDVR enables distributed routing support in the
# ML2 plugin and agents that support this feature

View File

@ -1,5 +1,6 @@
parameter_defaults:
NeutronMechanismDrivers: ['ovn', 'baremetal']
DhcpAgentNotification: true
resource_registry:
OS::TripleO::Services::IronicApi: ../../deployment/ironic/ironic-api-container-puppet.yaml
@ -7,4 +8,4 @@ resource_registry:
OS::TripleO::Services::IronicPxe: ../../deployment/ironic/ironic-pxe-container-puppet.yaml
OS::TripleO::Services::NovaIronic: ../../deployment/nova/nova-ironic-container-puppet.yaml
OS::TripleO::Services::IronicNeutronAgent: ../../deployment/ironic/ironic-neutron-agent-container-puppet.yaml
OS::TripleO::Services::NeutronDhcpAgent: ../../deployment/neutron/neutron-dhcp-container-puppet.yaml
OS::TripleO::Services::NeutronDhcpAgent: ../../deployment/neutron/neutron-dhcp-container-puppet.yaml

View File

@ -33,6 +33,7 @@ parameter_defaults:
NeutronServicePlugins: 'router,qos,segments,trunk,port_forwarding'
NeutronVniRanges: ['1:65536', ]
KernelIpNonLocalBind: 0
DhcpAgentNotification: true
NeutronL3AgentExtensions: "port_forwarding"

View File

@ -25,6 +25,7 @@ parameter_defaults:
NeutronServicePlugins: 'router,qos,segments,trunk,port_forwarding'
NeutronVniRanges: ['1:65536', ]
KernelIpNonLocalBind: 0
DhcpAgentNotification: true
NeutronEnableDVR: false

View File

@ -86,6 +86,7 @@ parameter_defaults:
NeutronBridgeMappings: ctlplane:br-ctlplane
NeutronAgentExtensions: []
NeutronFlatNetworks: '*'
DhcpAgentNotification: true
HeatConvergenceEngine: true
HeatCorsAllowedOrigin: '*'
HeatMaxNestedStackDepth: 7

View File

@ -0,0 +1,6 @@
---
other:
- |
Parameter ``DhcpAgentNotification`` is set to ``False`` by default now. It
should be set to ``True`` in case when Neutron DHCP agent is going to be
deployed. It shouldn't be enabled with ML2/OVN backend.