Enable ovn controller to be updated before ovn-northd.

Setting this parameter on recent enough ovn controller[1] allows the
update of ovn-controller before ovn-northd without breaking the
creation of new flows.

This is the usual pattern of an tripleo update.

[1] >= ovn2.13-20.09.0-17

Change-Id: Ibbdb9d68c5fe6483357b6cdbe63ccdf8f3e097f5
Depends-On: https://review.opendev.org/c/openstack/puppet-ovn/+/763895
This commit is contained in:
Sofer Athlan-Guyot 2020-11-24 02:46:21 +01:00
parent 04fabb2aa4
commit ec21edf4d9
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,8 @@ class tripleo::profile::base::neutron::agents::ovn (
) {
if $step >= 4 {
class { 'ovn::controller':
ovn_remote => join([$protocol, normalize_ip_for_uri($ovn_db_host), "${ovn_sbdb_port}"], ':'),
ovn_remote => join([$protocol, normalize_ip_for_uri($ovn_db_host), "${ovn_sbdb_port}"], ':'),
enable_ovn_match_northd => true,
}
}
}