Skip to content

Commit

Permalink
Update OVS to 2.17.3
Browse files Browse the repository at this point in the history
There are a few important bug fixes around conntrack
which became available in OVS 2.17.2 so it would be
good to update the image for that.

Signed-off-by: Mohammed Naser <mnaser@vexxhost.com>
  • Loading branch information
mnaser committed Nov 20, 2022
1 parent 8427b4a commit f9f3bba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/images/deps/ovs-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.17.0
2.17.3
8 changes: 4 additions & 4 deletions build/images/ovs/apply-patches.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ function apply_patch() {
git apply "$@"
}

if version_lt "$OVS_VERSION" "2.13.0" || version_gt "$OVS_VERSION" "2.17.0"; then
echoerr "OVS_VERSION $OVS_VERSION is not supported (must be >= 2.13.0 and <= 2.17.0)"
if version_lt "$OVS_VERSION" "2.13.0" || version_gt "$OVS_VERSION" "2.17.3"; then
echoerr "OVS_VERSION $OVS_VERSION is not supported (must be >= 2.13.0 and <= 2.17.3)"
exit 1
fi

Expand Down Expand Up @@ -94,8 +94,8 @@ fi

# This patch fixes a log file leak in OVS.
# See https://github.com/antrea-io/antrea/issues/2003
# It is fixed in the OVS master branch and will be included starting with OVS 2.18.
if version_lt "$OVS_VERSION" "2.18.0" ; then
# It is fixed in the OVS master branch and will be included starting with OVS 2.17.2.
if version_lt "$OVS_VERSION" "2.17.2" ; then
apply_patch "78ff3961ca9fb012eaaca3d3af1e8186fe1827e7"
fi

Expand Down
2 changes: 1 addition & 1 deletion docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ f06768ee-17ec-4abb-a971-b3b76abc8cda
Port antrea-gw0
Interface antrea-gw0
type: internal
ovs_version: "2.17.0"
ovs_version: "2.17.3"
```

- `ovs-ofctl show br-int`: show OpenFlow information of the OVS bridge.
Expand Down

0 comments on commit f9f3bba

Please sign in to comment.