Takashi Kajinami f6167d7731 OVN: Use appropriate IP version for OVN db
... instead of using IP v4 alwasys.

Change-Id: I7403eb8186ab1961b18b574613426995dad36128
2023-02-26 23:25:46 +09:00

20 lines
538 B
Puppet

# Configure the ovn service
#
class openstack_integration::ovn(
){
include openstack_integration::config
include openstack_integration::params
class { 'ovn::northd':
dbs_listen_ip => $::openstack_integration::config::ip_for_url,
}
class { 'ovn::controller':
ovn_remote => "tcp:${::openstack_integration::config::ip_for_url}:6642",
ovn_encap_ip => '127.0.0.1',
ovn_bridge_mappings => ['external:br-ex'],
ovn_cms_options => 'enable-chassis-as-gw',
manage_ovs_bridge => false,
}
}