Skip to content

Commit

Permalink
base: fix ovn-northd/ovn-controller not creating pidfile in arm64 (#3413
Browse files Browse the repository at this point in the history
)

Signed-off-by: zhangzujian <[email protected]>
  • Loading branch information
zhangzujian authored Nov 15, 2023
1 parent e2e3b4f commit 4452eea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dist/images/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ RUN cd /usr/src/ && git clone -b branch-22.12 --depth=1 https://github.com/ovn-o
# ovn-ic blacklist function not work on ipv6
curl -s https://github.com/kubeovn/ovn/commit/78ab91005854532e7eb5c4fe6b2923ce292e3681.patch | git apply && \
# fix lr-lb dnat with multiple distributed gateway ports
curl -s https://github.com/kubeovn/ovn/commit/80f37c2debbf9f5230403691f791d11cc2b2e277.patch | git apply
curl -s https://github.com/kubeovn/ovn/commit/80f37c2debbf9f5230403691f791d11cc2b2e277.patch | git apply && \
if [ "$ARCH" = "arm64" ]; then \
# fix ovn-northd/ovn-controller not creating pidfile in arm64
curl -s https://github.com/kubeovn/ovn/commit/fbfea0f1258d9d7723ead7e3dc8d7edbe74863d2.patch | git apply; \
fi

RUN apt install -y build-essential fakeroot \
autoconf automake bzip2 debhelper-compat dh-exec dh-python dh-sequence-python3 dh-sequence-sphinxdoc \
Expand Down

0 comments on commit 4452eea

Please sign in to comment.