Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DNM] Testing improved ovs-monitor-ipsec #2322

Open
wants to merge 22 commits into
base: release-4.14
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
4a1f6ff
testing: Improved ovs-monitor-ipsec.
igsilya Oct 3, 2024
dde49de
Dockerfile: Try libreswan 4.15.
igsilya Oct 4, 2024
695d997
libreswan-4.6-3.el9_0.2.x86_64.rpm
igsilya Oct 4, 2024
ff301f4
libreswan-4.12-2.el9_4.1.x86_64.rpm
igsilya Oct 4, 2024
61b6133
libreswan-4.5-1.el9_2.x86_64.rpm
igsilya Oct 7, 2024
27bec34
ovs-monitor-ipsec: Kill stuck ipsec auto commands.
igsilya Oct 7, 2024
c26ed03
ovs-monitor-ipsec: Delete stuck connections.
igsilya Oct 8, 2024
e3fef0e
libreswan-5.1-1.el9_2.x86_64.rpm
igsilya Oct 10, 2024
c7d42ba
libreswan-4.5-1.0fa145b49.el9_2.x86_64.rpm
igsilya Oct 10, 2024
729c4e1
libreswan-4.5-1.691b37ccb.el9_2.x86_64.rpm
igsilya Oct 11, 2024
b8ad03d
libreswan-4.5-1.0dbac4070.el9_2.x86_64.rpm
igsilya Oct 11, 2024
155a60b
libreswan-4.5-1.5b6fb4556.el9_2.x86_64.rpm
igsilya Oct 11, 2024
a772e2b
libreswan-4.5-1.el9_2.x86_64.rpm
igsilya Oct 11, 2024
54a249c
libreswan-4.5-1.fec6eedd2.el9_2.x86_64.rpm
igsilya Oct 14, 2024
182f125
libreswan-4.5-1.5e1673820.el9_2.x86_64.rpm
igsilya Oct 15, 2024
9bbb031
libreswan-4.5-1.4d4b940b2.el9_2.src.rpm
mohit-sheth Oct 16, 2024
3c100bd
libreswan-4.5-1.3757da46a.el9_2.x86_64.rpm
mohit-sheth Oct 16, 2024
7dfc24c
libreswan-4.5-1.6341e0d02.el9_2.src.rpm
mohit-sheth Oct 16, 2024
7ec4458
libreswan-4.5-1.41140e340.el9_2.x86_64.rpm
mohit-sheth Oct 17, 2024
f04403e
libreswan-4.9-5.el9_2.3.x86_64.rpm
mohit-sheth Oct 17, 2024
e846bad
libreswan-4.5-1.c9886a96d.el9_2.x86_64.rpm
mohit-sheth Oct 17, 2024
8fc6cb8
libreswan-4.9-5.el9_2.3.x86_64.rpm
mohit-sheth Oct 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ RUN INSTALL_PKGS=" \
eval "dnf install -y --nodocs $(cat /more-pkgs)" && \
dnf clean all && rm -rf /var/cache/*

COPY libreswan-4.9-5.el9_2.3.x86_64.rpm /root/
RUN rpm -Uhv --nodeps --force /root/libreswan*.rpm

COPY --from=builder /go/src/github.com/openshift/ovn-kubernetes/go-controller/_output/go/bin/ovnkube /usr/bin/
COPY --from=builder /go/src/github.com/openshift/ovn-kubernetes/go-controller/_output/go/bin/ovnkube-identity /usr/bin/
COPY --from=builder /go/src/github.com/openshift/ovn-kubernetes/go-controller/_output/go/bin/ovn-kube-util /usr/bin/
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,20 @@ RUN dnf install -y --nodocs \
ARG ovsver=3.1.0-88.el9fdp
ARG ovnver=23.09.4-16.el9fdp

COPY openvswitch3.1-3.1.0-bug41551.137.el9fdp.x86_64.rpm openvswitch3.1-devel-3.1.0-bug41551.137.el9fdp.x86_64.rpm openvswitch3.1-ipsec-3.1.0-bug41551.137.el9fdp.x86_64.rpm python3-openvswitch3.1-3.1.0-bug41551.137.el9fdp.x86_64.rpm /root/

RUN INSTALL_PKGS="iptables" && \
ovsver_short=$(echo "$ovsver" | cut -d'.' -f1,2) && \
ovnver_short=$(echo "$ovnver" | cut -d'.' -f1,2) && \
dnf install -y --nodocs $INSTALL_PKGS && \
dnf install -y --nodocs "openvswitch$ovsver_short = $ovsver" "python3-openvswitch$ovsver_short = $ovsver" && \
rpm -Uhv --nodeps --force /root/openvswitch3.1*.rpm && \
dnf install -y --nodocs "ovn$ovnver_short = $ovnver" "ovn$ovnver_short-central = $ovnver" "ovn$ovnver_short-host = $ovnver" && \
dnf clean all && rm -rf /var/cache/*

RUN ovsver_short=$(echo "$ovsver" | cut -d'.' -f1,2) && \
ovnver_short=$(echo "$ovnver" | cut -d'.' -f1,2) && \
sed 's/%/"/g' <<<"%openvswitch$ovsver_short-devel = $ovsver% %openvswitch$ovsver_short-ipsec = $ovsver% %ovn$ovnver_short-vtep = $ovnver%" > /more-pkgs
sed 's/%/"/g' <<<"%ovn$ovnver_short-vtep = $ovnver%" > /more-pkgs

RUN mkdir -p /var/run/openvswitch && \
mkdir -p /var/run/ovn && \
Expand Down
Binary file added libreswan-4.12-2.el9_4.1.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.15-3.el9.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.0dbac4070.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.0fa145b49.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.3757da46a.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.41140e340.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.4d4b940b2.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.5b6fb4556.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.5e1673820.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.6341e0d02.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.691b37ccb.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.c9886a96d.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.5-1.fec6eedd2.el9_2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.6-3.el9_0.2.x86_64.rpm
Binary file not shown.
Binary file added libreswan-4.9-5.el9_2.3.x86_64.rpm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.