8ba8fb649d
... so that we can reuse the manifest in acceptance tests. Change-Id: I4ecc5ec4271badabbf421eade7f32ea006d773b2
18 lines
432 B
Puppet
18 lines
432 B
Puppet
# Configure the ovn service
|
|
#
|
|
class openstack_integration::ovn(
|
|
){
|
|
|
|
include openstack_integration::config
|
|
include openstack_integration::params
|
|
|
|
class { 'ovn::northd': }
|
|
class { 'ovn::controller':
|
|
ovn_remote => 'tcp:127.0.0.1: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,
|
|
}
|
|
}
|