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

OVS 3.2.1 #1135

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ services:
context: .
ovs:
restart: always
image: iqtlabs/openvswitch:v3.2.0
image: iqtlabs/openvswitch:v3.2.1
healthcheck:
test: 'ovs-vsctl show'
volumes:
Expand Down
2 changes: 1 addition & 1 deletion openvswitch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:bookworm-slim as builder
# hadolint ignore=DL3008
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates make autoconf wget gcc git libc6-dev python3-dev openssl
WORKDIR /
ENV OVS_VERSION 3.2.0
ENV OVS_VERSION 3.2.1
RUN wget https://www.openvswitch.org/releases/openvswitch-$OVS_VERSION.tar.gz && \
tar -xzvf openvswitch-$OVS_VERSION.tar.gz && \
mv openvswitch-$OVS_VERSION openvswitch
Expand Down
2 changes: 1 addition & 1 deletion tests/install_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ sudo modprobe openvswitch && \
sudo apt-get install graphviz wget udhcpd jq nftables && sudo nft flush ruleset && sudo apt-get purge nftables && sudo apt-get --reinstall install iptables && \
sudo update-alternatives --set iptables /usr/sbin/iptables-legacy && \
sudo /etc/init.d/docker restart && \
cd openvswitch && docker build -f Dockerfile . -t iqtlabs/openvswitch:v3.2.0 && cd .. && \
cd openvswitch && docker build -f Dockerfile . -t iqtlabs/openvswitch:v3.2.1 && cd .. && \
sudo ip link && sudo ip addr