Configure OVN to emit "need to frag" packets in case of MTU mismatch

It is useful when external network's MTU is lower then internal
geneve networks.
Host kernel needs to be in version >= 5.2 for this option to work.
All Kolla supported host operating systems have higher kernel version.

Change-Id: Id64e99b07e2bb5e6c97b784f4ffedafc7e7de188
This commit is contained in:
Bartosz Bezak 2023-08-25 12:55:51 +02:00
parent 106a21fb6c
commit cf8283928e
2 changed files with 8 additions and 0 deletions

View File

@ -40,4 +40,5 @@ ovn_nb_connection = {{ ovn_nb_connection }}
ovn_sb_connection = {{ ovn_sb_connection }}
ovn_metadata_enabled = True
enable_distributed_floating_ip = {{ neutron_ovn_distributed_fip | bool }}
ovn_emit_need_to_frag = True
{% endif %}

View File

@ -0,0 +1,7 @@
---
upgrade:
- |
Enabled ``ovn_emit_need_to_frag`` setting by default. It is useful when
external network's MTU is lower then internal geneve networks.
Host kernel needs to be in version >= 5.2 for this option to work.
All Kolla supported host operating systems have higher kernel version.