ovs-agent: Use appropriate IP for OpenFlow connection

... instead of using the default IPv4 loopback address.

Depends-on: https://review.opendev.org/876736
Change-Id: I82bc6f80368b3e44477f65bc60040114cf1bfb2e
This commit is contained in:
Takashi Kajinami 2023-03-07 23:11:28 +09:00
parent 7aa961141c
commit 0797e82aca

View File

@ -247,11 +247,12 @@ class openstack_integration::neutron (
case $driver {
'openvswitch': {
class { 'neutron::agents::ml2::ovs':
local_ip => $::openstack_integration::config::host,
tunnel_types => ['vxlan'],
bridge_mappings => ['external:br-ex'],
manage_vswitch => false,
firewall_driver => 'iptables_hybrid',
local_ip => $::openstack_integration::config::host,
tunnel_types => ['vxlan'],
bridge_mappings => ['external:br-ex'],
manage_vswitch => false,
firewall_driver => 'iptables_hybrid',
of_listen_address => $::openstack_integration::config::host,
}
}
'ovn': {