# Copyright (C) 2009, 2010, 2013, 2014 Nicira Networks, Inc. # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. This file is offered as-is, # without warranty of any kind. # # If tests have to be skipped while building, specify the '--without check' # option. For example: # rpmbuild -bb --without check rhel/openvswitch-fedora.spec # This defines the base package name's version. %define pkgver 2.13 %define pkgname ovn-2021 # If libcap-ng isn't available and there is no need for running OVS # as regular user, specify the '--without libcapng' %bcond_without libcapng # Enable PIE, bz#955181 %global _hardened_build 1 # RHEL-7 doesn't define _rundir macro yet # Fedora 15 onwards uses /run as _rundir %if 0%{!?_rundir:1} %define _rundir /run %endif # Build python2 (that provides python) and python3 subpackages on Fedora # Build only python3 (that provides python) subpackage on RHEL8 # Build only python subpackage on RHEL7 %if 0%{?rhel} > 7 || 0%{?fedora} # On RHEL8 Sphinx is included in buildroot %global external_sphinx 1 %else # Don't use external sphinx (RHV doesn't have optional repositories enabled) %global external_sphinx 0 %endif # We would see rpmlinit error - E: hardcoded-library-path in '% {_prefix}/lib'. # But there is no solution to fix this. Using {_lib} macro will solve the # rpmlink error, but will install the files in /usr/lib64/. # OVN pacemaker ocf script file is copied in /usr/lib/ocf/resource.d/ovn/ # and we are not sure if pacemaker looks into this path to find the # OVN resource agent script. %global ovnlibdir %{_prefix}/lib Name: %{pkgname} Summary: Open Virtual Network support Group: System Environment/Daemons URL: http://www.ovn.org/ Version: 21.03.0 Release: 40%{?commit0:.%{date}git%{shortcommit0}}%{?dist} Provides: openvswitch%{pkgver}-ovn-common = %{?epoch:%{epoch}:}%{version}-%{release} Obsoletes: openvswitch%{pkgver}-ovn-common < 2.11.0-1 # Nearly all of openvswitch is ASL 2.0. The bugtool is LGPLv2+, and the # lib/sflow*.[ch] files are SISSL License: ASL 2.0 and LGPLv2+ and SISSL # Always pull an upstream release, since this is what we rebase to. Source: https://github.com/ovn-org/ovn/archive/v%{version}.tar.gz#/ovn-%{version}.tar.gz %define ovscommit ac85cdb38c1f33e7952bc4c0347d6c7873fb56a1 %define ovsshortcommit ac85cdb Source10: https://github.com/openvswitch/ovs/archive/%{ovscommit}.tar.gz#/openvswitch-%{ovsshortcommit}.tar.gz %define ovsdir ovs-%{ovscommit} %define docutilsver 0.12 %define pygmentsver 1.4 %define sphinxver 1.1.3 Source100: https://pypi.io/packages/source/d/docutils/docutils-%{docutilsver}.tar.gz Source101: https://pypi.io/packages/source/P/Pygments/Pygments-%{pygmentsver}.tar.gz Source102: https://pypi.io/packages/source/S/Sphinx/Sphinx-%{sphinxver}.tar.gz Source500: configlib.sh Source501: gen_config_group.sh Source502: set_config.sh # Important: source503 is used as the actual copy file # @TODO: this causes a warning - fix it? Source504: arm64-armv8a-linuxapp-gcc-config Source505: ppc_64-power8-linuxapp-gcc-config Source506: x86_64-native-linuxapp-gcc-config Patch: ovn-%{version}.patch # FIXME Sphinx is used to generate some manpages, unfortunately, on RHEL, it's # in the -optional repository and so we can't require it directly since RHV # doesn't have the -optional repository enabled and so TPS fails %if %{external_sphinx} BuildRequires: python3-sphinx %else # Sphinx dependencies BuildRequires: python-devel BuildRequires: python-setuptools #BuildRequires: python2-docutils BuildRequires: python-jinja2 BuildRequires: python-nose #BuildRequires: python2-pygments # docutils dependencies BuildRequires: python-imaging # pygments dependencies BuildRequires: python-nose %endif BuildRequires: gcc gcc-c++ make BuildRequires: autoconf automake libtool BuildRequires: systemd-units openssl openssl-devel BuildRequires: python3-devel python3-setuptools BuildRequires: desktop-file-utils BuildRequires: groff-base graphviz BuildRequires: unbound-devel # make check dependencies BuildRequires: procps-ng %if 0%{?rhel} > 7 || 0%{?fedora} BuildRequires: python3-pyOpenSSL %endif %if %{with libcapng} BuildRequires: libcap-ng libcap-ng-devel %endif Requires: hostname openssl iproute module-init-tools Requires(post): systemd-units Requires(preun): systemd-units Requires(postun): systemd-units # to skip running checks, pass --without check %bcond_without check %description OVN, the Open Virtual Network, is a system to support virtual network abstraction. OVN complements the existing capabilities of OVS to add native support for virtual network abstractions, such as virtual L2 and L3 overlays and security groups. %package central Summary: Open Virtual Network support License: ASL 2.0 Requires: %{pkgname} Requires: firewalld-filesystem Provides: openvswitch%{pkgver}-ovn-central = %{?epoch:%{epoch}:}%{version}-%{release} Obsoletes: openvswitch%{pkgver}-ovn-central < 2.11.0-1 %description central OVN DB servers and ovn-northd running on a central node. %package host Summary: Open Virtual Network support License: ASL 2.0 Requires: %{pkgname} Requires: firewalld-filesystem Provides: openvswitch%{pkgver}-ovn-host = %{?epoch:%{epoch}:}%{version}-%{release} Obsoletes: openvswitch%{pkgver}-ovn-host < 2.11.0-1 %description host OVN controller running on each host. %package vtep Summary: Open Virtual Network support License: ASL 2.0 Requires: %{pkgname} Provides: openvswitch%{pkgver}-ovn-vtep = %{?epoch:%{epoch}:}%{version}-%{release} Obsoletes: openvswitch%{pkgver}-ovn-vtep < 2.11.0-1 %description vtep OVN vtep controller %prep %if 0%{?commit0:1} %autosetup -n ovn-%{commit0} -a 10 -p 1 %else %autosetup -n ovn-%{version} -a 10 -p 1 %endif %build %if 0%{?commit0:1} # fix the snapshot unreleased version to be the released one. sed -i.old -e "s/^AC_INIT(openvswitch,.*,/AC_INIT(openvswitch, %{version},/" configure.ac %endif ./boot.sh # OVN source code is now separate. # Build openvswitch first. # XXX Current openvswitch2.13 doesn't # use "2.13.0" for version. It's a commit hash pushd %{ovsdir} ./boot.sh %configure \ %if %{with libcapng} --enable-libcapng \ %else --disable-libcapng \ %endif --enable-ssl \ --with-pkidir=%{_sharedstatedir}/openvswitch/pki make %{?_smp_mflags} popd # Build OVN. # XXX OVS version needs to be updated when ovs2.13 is updated. %configure \ --with-ovs-source=$PWD/%{ovsdir} \ %if %{with libcapng} --enable-libcapng \ %else --disable-libcapng \ %endif --enable-ssl \ --with-pkidir=%{_sharedstatedir}/openvswitch/pki make %{?_smp_mflags} %install %make_install install -p -D -m 0644 \ rhel/usr_share_ovn_scripts_systemd_sysconfig.template \ $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/ovn for service in ovn-controller ovn-controller-vtep ovn-northd; do install -p -D -m 0644 \ rhel/usr_lib_systemd_system_${service}.service \ $RPM_BUILD_ROOT%{_unitdir}/${service}.service done install -d -m 0755 $RPM_BUILD_ROOT/%{_sharedstatedir}/ovn install -d $RPM_BUILD_ROOT%{ovnlibdir}/firewalld/services/ install -p -m 0644 rhel/usr_lib_firewalld_services_ovn-central-firewall-service.xml \ $RPM_BUILD_ROOT%{ovnlibdir}/firewalld/services/ovn-central-firewall-service.xml install -p -m 0644 rhel/usr_lib_firewalld_services_ovn-host-firewall-service.xml \ $RPM_BUILD_ROOT%{ovnlibdir}/firewalld/services/ovn-host-firewall-service.xml install -d -m 0755 $RPM_BUILD_ROOT%{ovnlibdir}/ocf/resource.d/ovn ln -s %{_datadir}/ovn/scripts/ovndb-servers.ocf \ $RPM_BUILD_ROOT%{ovnlibdir}/ocf/resource.d/ovn/ovndb-servers install -p -D -m 0644 rhel/etc_logrotate.d_ovn \ $RPM_BUILD_ROOT/%{_sysconfdir}/logrotate.d/ovn # remove unneeded files. rm -f $RPM_BUILD_ROOT%{_bindir}/ovs* rm -f $RPM_BUILD_ROOT%{_bindir}/vtep-ctl rm -f $RPM_BUILD_ROOT%{_sbindir}/ovs* rm -f $RPM_BUILD_ROOT%{_mandir}/man1/ovs* rm -f $RPM_BUILD_ROOT%{_mandir}/man5/ovs* rm -f $RPM_BUILD_ROOT%{_mandir}/man5/vtep* rm -f $RPM_BUILD_ROOT%{_mandir}/man7/ovs* rm -f $RPM_BUILD_ROOT%{_mandir}/man8/ovs* rm -f $RPM_BUILD_ROOT%{_mandir}/man8/vtep* rm -rf $RPM_BUILD_ROOT%{_datadir}/ovn/python rm -f $RPM_BUILD_ROOT%{_datadir}/ovn/scripts/ovs* rm -rf $RPM_BUILD_ROOT%{_datadir}/ovn/bugtool-plugins rm -f $RPM_BUILD_ROOT%{_libdir}/*.a rm -f $RPM_BUILD_ROOT%{_libdir}/*.la rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/*.pc rm -f $RPM_BUILD_ROOT%{_includedir}/ovn/* rm -f $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/ovs-appctl-bashcomp.bash rm -f $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/ovs-vsctl-bashcomp.bash rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/openvswitch rm -f $RPM_BUILD_ROOT%{_datadir}/ovn/scripts/ovn-bugtool* rm -f $RPM_BUILD_ROOT/%{_bindir}/ovn-docker-overlay-driver \ $RPM_BUILD_ROOT/%{_bindir}/ovn-docker-underlay-driver %check %if %{with check} touch resolv.conf export OVS_RESOLV_CONF=$(pwd)/resolv.conf if ! make check TESTSUITEFLAGS='%{_smp_mflags} -k ovn'; then cat tests/testsuite.log if ! make check TESTSUITEFLAGS='--recheck'; then cat tests/testsuite.log # Presently a test case - "2796: ovn -- ovn-controller incremental processing" # is failing on aarch64 arch. Let's not exit for this arch # until we figure out why it is failing. # Test case 93: ovn.at:12105 ovn -- ACLs on Port Groups is failing # repeatedly on s390x. This needs to be investigated. %ifnarch aarch64 %ifnarch ppc64le %ifnarch s390x exit 1 %endif %endif %endif fi fi %endif %clean rm -rf $RPM_BUILD_ROOT %pre central if [ $1 -eq 1 ] ; then # Package install. /bin/systemctl status ovn-northd.service >/dev/null ovn_status=$? rpm -ql openvswitch-ovn-central > /dev/null if [[ "$?" = "0" && "$ovn_status" = "0" ]]; then # ovn-northd service is running which means old openvswitch-ovn-central # is already installed and it will be cleaned up. So start ovn-northd # service when posttrans central is called. touch %{_localstatedir}/lib/rpm-state/ovn-northd fi fi %pre host if [ $1 -eq 1 ] ; then # Package install. /bin/systemctl status ovn-controller.service >/dev/null ovn_status=$? rpm -ql openvswitch-ovn-host > /dev/null if [[ "$?" = "0" && "$ovn_status" = "0" ]]; then # ovn-controller service is running which means old # openvswitch-ovn-host is installed and it will be cleaned up. So # start ovn-controller service when posttrans host is called. touch %{_localstatedir}/lib/rpm-state/ovn-controller fi fi %pre vtep if [ $1 -eq 1 ] ; then # Package install. /bin/systemctl status ovn-controller-vtep.service >/dev/null ovn_status=$? rpm -ql openvswitch-ovn-vtep > /dev/null if [[ "$?" = "0" && "$ovn_status" = "0" ]]; then # ovn-controller-vtep service is running which means old # openvswitch-ovn-vtep is installed and it will be cleaned up. So # start ovn-controller-vtep service when posttrans host is called. touch %{_localstatedir}/lib/rpm-state/ovn-controller-vtep fi fi %preun central %if 0%{?systemd_preun:1} %systemd_preun ovn-northd.service %else if [ $1 -eq 0 ] ; then # Package removal, not upgrade /bin/systemctl --no-reload disable ovn-northd.service >/dev/null 2>&1 || : /bin/systemctl stop ovn-northd.service >/dev/null 2>&1 || : fi %endif %preun host %if 0%{?systemd_preun:1} %systemd_preun ovn-controller.service %else if [ $1 -eq 0 ] ; then # Package removal, not upgrade /bin/systemctl --no-reload disable ovn-controller.service >/dev/null 2>&1 || : /bin/systemctl stop ovn-controller.service >/dev/null 2>&1 || : fi %endif %preun vtep %if 0%{?systemd_preun:1} %systemd_preun ovn-controller-vtep.service %else if [ $1 -eq 0 ] ; then # Package removal, not upgrade /bin/systemctl --no-reload disable ovn-controller-vtep.service >/dev/null 2>&1 || : /bin/systemctl stop ovn-controller-vtep.service >/dev/null 2>&1 || : fi %endif %post %if %{with libcapng} if [ $1 -eq 1 ]; then sed -i 's:^#OVN_USER_ID=:OVN_USER_ID=:' %{_sysconfdir}/sysconfig/ovn sed -i 's:\(.*su\).*:\1 openvswitch openvswitch:' %{_sysconfdir}/logrotate.d/ovn fi %endif %post central %if 0%{?systemd_post:1} %systemd_post ovn-northd.service %else # Package install, not upgrade if [ $1 -eq 1 ]; then /bin/systemctl daemon-reload >dev/null || : fi %endif %post host %if 0%{?systemd_post:1} %systemd_post ovn-controller.service %else # Package install, not upgrade if [ $1 -eq 1 ]; then /bin/systemctl daemon-reload >dev/null || : fi %endif %post vtep %if 0%{?systemd_post:1} %systemd_post ovn-controller-vtep.service %else # Package install, not upgrade if [ $1 -eq 1 ]; then /bin/systemctl daemon-reload >dev/null || : fi %endif %postun %postun central %if 0%{?systemd_postun_with_restart:1} %systemd_postun_with_restart ovn-northd.service %else /bin/systemctl daemon-reload >/dev/null 2>&1 || : if [ "$1" -ge "1" ] ; then # Package upgrade, not uninstall /bin/systemctl try-restart ovn-northd.service >/dev/null 2>&1 || : fi %endif %postun host %if 0%{?systemd_postun_with_restart:1} %systemd_postun_with_restart ovn-controller.service %else /bin/systemctl daemon-reload >/dev/null 2>&1 || : if [ "$1" -ge "1" ] ; then # Package upgrade, not uninstall /bin/systemctl try-restart ovn-controller.service >/dev/null 2>&1 || : fi %endif %postun vtep %if 0%{?systemd_postun_with_restart:1} %systemd_postun_with_restart ovn-controller-vtep.service %else /bin/systemctl daemon-reload >/dev/null 2>&1 || : if [ "$1" -ge "1" ] ; then # Package upgrade, not uninstall /bin/systemctl try-restart ovn-controller-vtep.service >/dev/null 2>&1 || : fi %endif %posttrans central if [ $1 -eq 1 ]; then # Package install, not upgrade if [ -e %{_localstatedir}/lib/rpm-state/ovn-northd ]; then rm %{_localstatedir}/lib/rpm-state/ovn-northd /bin/systemctl start ovn-northd.service >/dev/null 2>&1 || : fi fi %posttrans host if [ $1 -eq 1 ]; then # Package install, not upgrade if [ -e %{_localstatedir}/lib/rpm-state/ovn-controller ]; then rm %{_localstatedir}/lib/rpm-state/ovn-controller /bin/systemctl start ovn-controller.service >/dev/null 2>&1 || : fi fi %posttrans vtep if [ $1 -eq 1 ]; then # Package install, not upgrade if [ -e %{_localstatedir}/lib/rpm-state/ovn-controller-vtep ]; then rm %{_localstatedir}/lib/rpm-state/ovn-controller-vtep /bin/systemctl start ovn-controller-vtep.service >/dev/null 2>&1 || : fi fi %files %{_bindir}/ovn-nbctl %{_bindir}/ovn-sbctl %{_bindir}/ovn-trace %{_bindir}/ovn-detrace %{_bindir}/ovn-appctl %{_bindir}/ovn-ic-nbctl %{_bindir}/ovn-ic-sbctl %dir %{_datadir}/ovn/ %dir %{_datadir}/ovn/scripts/ %{_datadir}/ovn/scripts/ovn-ctl %{_datadir}/ovn/scripts/ovn-lib %{_datadir}/ovn/scripts/ovndb-servers.ocf %{_mandir}/man8/ovn-ctl.8* %{_mandir}/man8/ovn-appctl.8* %{_mandir}/man8/ovn-nbctl.8* %{_mandir}/man8/ovn-ic-nbctl.8* %{_mandir}/man8/ovn-trace.8* %{_mandir}/man1/ovn-detrace.1* %{_mandir}/man7/ovn-architecture.7* %{_mandir}/man8/ovn-sbctl.8* %{_mandir}/man8/ovn-ic-sbctl.8* %{_mandir}/man5/ovn-nb.5* %{_mandir}/man5/ovn-ic-nb.5* %{_mandir}/man5/ovn-sb.5* %{_mandir}/man5/ovn-ic-sb.5* %dir %{ovnlibdir}/ocf/resource.d/ovn/ %{ovnlibdir}/ocf/resource.d/ovn/ovndb-servers %config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/logrotate.d/ovn %config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/sysconfig/ovn %files central %{_bindir}/ovn-northd %{_bindir}/ovn-ic %{_mandir}/man8/ovn-northd.8* %{_mandir}/man8/ovn-ic.8* %{_datadir}/ovn/ovn-nb.ovsschema %{_datadir}/ovn/ovn-ic-nb.ovsschema %{_datadir}/ovn/ovn-sb.ovsschema %{_datadir}/ovn/ovn-ic-sb.ovsschema %{_unitdir}/ovn-northd.service %{ovnlibdir}/firewalld/services/ovn-central-firewall-service.xml %files host %{_bindir}/ovn-controller %{_mandir}/man8/ovn-controller.8* %{_unitdir}/ovn-controller.service %{ovnlibdir}/firewalld/services/ovn-host-firewall-service.xml %files vtep %{_bindir}/ovn-controller-vtep %{_mandir}/man8/ovn-controller-vtep.8* %{_unitdir}/ovn-controller-vtep.service %changelog * Thu May 27 2021 Dumitru Ceara - 21.03.0-40 - if-status: Add OVS interface status management module. (#1952846) [Gerrit: 7272e3cb2866d65dfffda5fa0b6f062a086bcbcf] [Upstream: 5c3371922994c2d8a3610c9353902156db27d108] * Thu May 27 2021 Han Zhou - 21.03.0-39 - ovn-controller.c: Remove extra local_lports_changed setting. [Gerrit: 8da45224b868d72afce47778a577ecb602fc8652] [Upstream: fa28ba6963650d5f8ed90865df3b81699a0a9b60] * Fri May 21 2021 Lorenzo Bianconi - 21.03.0-38 - physical: do not forward traffic from localport to a localnet one [Gerrit: 89e27e959ab66592c3b716bec3e2e757161b2586] [Upstream: 96959e56d634c8d888af9e3ee340602593c7e4fa] * Thu May 20 2021 Lorenzo Bianconi - 21.03.0-37 - ovn-nbctl: do not report an error for duplicated ecmp routes with --may-exist [Gerrit: 6d9a0af88ea8db8cc048fb913a4316e1fcbe32ad] [Upstream: f63b609a0610a8c9fcd13c38f3acd3526b8a8b0c] * Wed May 19 2021 Lorenzo Bianconi - 21.03.0-36 - controller: fix physical flow update for localport [Gerrit: d040f88b0b0b5c5e42004996f128350e8fd420ca] [Upstream: 925ed83a6c8064fcb93250acd7493b59c034fa7b] * Tue May 18 2021 Mark Michelson - 21.03.0-35 - expr: crush the result of a sorted OR expression. [Gerrit: 9cb6c3e6a3e7a21c07169cf631ebdcd94398025e] [Upstream: 3dab95aa5c8c6ea97395127dd2acf27487fd1cd5] * Fri May 14 2021 Numan Siddique - 21.03.0-34 - Fix compilation error introduced in the previous commit. [Gerrit: 0cc5455f8ba4a57c153811b7e93bc4c4d0a4e97d] [Upstream: 0675bb01221b9b2d5b0b7b55715979204454cada] * Fri May 14 2021 Ilya Maximets - 21.03.0-33 - northd: Combine router arp flows. (#1945415) [Gerrit: 0e60182997ecc3a6606772d78609040203dbe67e] [Upstream: ea6ee901ff9107a084bc830a8a38c4e0bd9f75f7] * Wed May 12 2021 Flavio Fernandes - 21.03.0-32 - ovn-controller: Ensure br-int is using secure fail-mode (#1957025) [Gerrit: f56d885a7b4b9776a677a98ce758a177238e043f] [Upstream: 9cc334bc1a036a93cc1a541513d48f4df6933e9b] * Tue May 11 2021 Numan Siddique - 21.03.0-31 - northd: Support flow offloading for logical switches with no ACLs. (#1955191) [Gerrit: 80f98b4a82f3a7cece6a33a5190b748b86cf868c] [Upstream: 127bf166ccf4a2509f670c48a00b0340039f20d2] * Tue May 11 2021 Numan Siddique - 21.03.0-30 - northd: Provide the option to not use ct.inv in lflows. [Gerrit: 65cf2afebcdaa70941ba953b117da82e3f97f6fe] [Upstream: 3bb91366a6b0d60df5ce8f9c7f6427f7d37dfdd4] * Tue May 11 2021 Numan Siddique - 21.03.0-29 - northd: Optimize ct nat for load balancer traffic. [Gerrit: 6e1a063b8e7f90ff7bfc95ec65347088d6ff8225] [Upstream: 0038579d192802fff03c3594e4f85dab4f7af2bd] * Fri Apr 30 2021 Dumitru Ceara - 21.03.0-28 - binding: Don't reset expected seqno for interfaces already being installed. (#1946420) [Gerrit: 7126b44ee9a5d74d77d5b8326b2cf87630f92cec] [Upstream: 9c9b6b1d98e38d3d7a1dcf01741b095a6b9e8f0c] * Mon Apr 26 2021 Dumitru Ceara - 21.03.0-27 - tests: Improve test "IGMP snoop/querier/relay". (#1941067) [Gerrit: 6100b80c194a9988f0967a2a232065eca5940fcd] [Upstream: f5a27f67d825eb306d3d39815293cb2191c89716] * Thu Apr 22 2021 Lorenzo Bianconi - 21.03.0-26 - ovn-nbctl: dump next-hop for router policies [Gerrit: 6ebe05a0b9765f66a7f1350882c122cccd8f7304] [Upstream: d8b282b2852e2b0d4e44963b3b9ade8d28a0b899] * Wed Apr 21 2021 Dan Williams - 21.03.0-25 - ovn-ctl: stop databases with stop_ovn_daemon() (#1944239) [Gerrit: dac053806bb3e061669fa449f2c704fbef9aff1d] [Upstream: N/A] * Wed Apr 21 2021 Dan Williams - 21.03.0-24 - ovn-lib: harmonize stop_ovn_daemon() with ovs-lib [Gerrit: 92d983366b8cbd513b1d69f729a920204a2c2973] [Upstream: N/A] * Wed Apr 21 2021 Numan Siddique - 21.03.0-23 - tests: Fix frequent failure of "4 HV, 1 LS, 1 LR, packet test with HA distributed router gateway port:". [Gerrit: 56233e8004c1651add1211d8217cc23d9a74eea7] [Upstream: N/A] * Wed Apr 21 2021 Dumitru Ceara - 21.03.0-22 - controller: Monitor all logical flows that refer to datapath groups. (#1947056) [Gerrit: ca662b1557adad61fba46ec249d5c5511738bcac] [Upstream: N/A] * Wed Apr 14 2021 Numan Siddique - 21.03.0-21 - controller: Fix virtual lport I-P handling. (#1947823) [Gerrit: 0938c49138dac280bbc59148fe87dc0debed6f62] [Upstream: 1ad0a974b55dc6f31f7ea940e3b7d63368babb04] * Tue Apr 13 2021 Dumitru Ceara - 21.03.0-20 - northd: Restore flows that recirculate packets in the router DNAT zone. [Gerrit: 4f5d3099d94c4860737546c4c1f6561f15dc7519] [Upstream: 82b4c619dd6c772a50d5403bf6d40aa4b4f7e38d] * Tue Apr 13 2021 Numan Siddique - 21.03.0-19 - Merge "binding: Fix the crashes seen when port binding type changes." into ovn-2021 [Gerrit: 5a15f57371ce318a382c0e3aa262e5dab790e168] [Upstream: N/A] * Tue Apr 13 2021 Lorenzo Bianconi - 21.03.0-18 - Merge "northd: introduce per-lb lb_skip_snat option" into ovn-2021 [Gerrit: 91e869a442511d649b123d42e69b789f5d3ee96e] [Upstream: N/A] * Mon Mar 29 2021 Lorenzo Bianconi - 21.03.0-17 - northd: introduce lrouter_check_nat_entry routine [Gerrit: 0b3ca120ea30a2b1d34d5b55e9b7b953757da4dd] [Upstream: e02cd3d2001db87b92bd139eab533e69e0d48aee] * Mon Mar 29 2021 Lorenzo Bianconi - 21.03.0-16 - northd: introduce build_lrouter_ingress_flow routine [Gerrit: db27342ff9355f45021013ff3aaf2ebafe71c47a] [Upstream: 0d16a8b64c5035529cbbbf245384618711024ae4] * Mon Mar 29 2021 Lorenzo Bianconi - 21.03.0-15 - northd: introduce build_lrouter_out_snat_flow routine [Gerrit: 37b0ba144b999a089cd439023f90980651400616] [Upstream: 5e8fadf69161bc7e56b8f9f57124e5083b496b83] * Mon Mar 29 2021 Lorenzo Bianconi - 21.03.0-14 - northd: introduce build_lrouter_out_undnat_flow routine [Gerrit: 68226a2a7dd698bb0097a87c2f2367c261f5f234] [Upstream: d8edf46f9e40791954d6bfc0231064e6e09252db] * Mon Mar 29 2021 Lorenzo Bianconi - 21.03.0-13 - northd: introduce build_lrouter_in_dnat_flow routine [Gerrit: a5189c81e017ef54c5612072c025fb0b2b24f836] [Upstream: 225426081f8533e3d4df022b392105028f8bb37c] * Mon Mar 29 2021 Lorenzo Bianconi - 21.03.0-12 - northd: introduce build_lrouter_in_unsnat_flow routine [Gerrit: 083b610a6cabac7bb5136e72a15e35ae8a95b6fe] [Upstream: fa91da7c9979d7b21b7a2a5557705c238cde97a0] * Mon Mar 29 2021 Lorenzo Bianconi - 21.03.0-11 - northd: introduce build_lrouter_lb_flows routine [Gerrit: d737b0572331da6e54b7dfa6a941be48035e061f] [Upstream: 949e4319904938c1d83df2557c37b4bdfa6cbf25] * Mon Mar 29 2021 Lorenzo Bianconi - 21.03.0-10 - northd: reduce indentation in build_lrouter_nat_defrag_and_lb [Gerrit: 2de341869c169b807c8ae0abb413d01e381e698b] [Upstream: 3ba84a110fd969d2c017070b5047f6df1129ac48] * Mon Mar 29 2021 Lorenzo Bianconi - 21.03.0-9 - controller: introduce stats counters for ovn-controller incremental processing [Gerrit: eee1993bbf9812adbb3717a2868b87cb01124665] [Upstream: 0ddb8b2c979c1102d206b4f855eb5fbe1566768e] * Mon Mar 29 2021 Mark Michelson - 21.03.0-8 - Add distgit syncing features. [Gerrit: fccf9eb76e6e89e51788a3c3decf02b3b7cf621d] [Upstream: N/A] * Thu Mar 25 2021 Michele Baldessari - 21.03.0-7 - Fix connection string in case of changes in the ovndb-servers.ocf RA [Gerrit: aab170f85e7e271d199f62ca3f1d050531f124bf] [Upstream: 7f8bb3f2f77567d8fb30657ad5c3a9408692d6b5] * Thu Mar 25 2021 Daniel Alvarez Sanchez - 21.03.0-6 - pinctrl: Don't send gARPs for localports (#1939470) [Gerrit: a49a1c229790e896d391fcc0a6ed07fbf977963f] [Upstream: 578238b36073256c524a4c2b6ed7521f73aa0019] * Mon Mar 15 2021 Ilya Maximets - 21.03.0-5 - ci: Fix handling of python packages. [Gerrit: da028c72bdc7742b3065d1df95a3789fbc16b27a] [Upstream: 338a6ddb5ea1c89b48c484b0448a216a82225adc] * Fri Mar 12 2021 Mark Michelson - 21.03.0-4 - Prepare for 21.03.1 [Gerrit: 79d8c9d594f8cda5023d3e1fefbaf53e109de89b] [Upstream: N/A]