From 66a99f892863396460e57f305592d348be8573f1 Mon Sep 17 00:00:00 2001 From: Zhenya Tikhonov Date: Mon, 1 Apr 2024 11:40:27 +0400 Subject: [PATCH 1/2] fix: change `iptables` backend to legacy --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index d85979d..d67a68b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,9 +33,15 @@ RUN echo -en "https://dl-cdn.alpinelinux.org/alpine/v$(cut -d'.' -f1,2 /etc/alpi && apk upgrade \ && apk add bash jq fuse-overlayfs --no-cache \ && apk add slirp4netns --no-cache \ + # Needed only for `update-alternatives` below + && apk add dpkg --no-cache \ && rm /usr/local/bin/vpnkit \ && rm -rf /var/cache/apk/* +# Backward compatibility with kernels that do not support `iptables-nft`. Check #CR-23033 for details. +RUN update-alternatives --install $(which iptables) iptables $(which iptables-legacy) 10 \ + && update-alternatives --install $(which ip6tables) ip6tables $(which ip6tables-legacy) 10 + ENV DOCKERD_ROOTLESS_ROOTLESSKIT_NET=slirp4netns COPY --from=node-exporter /bin/node_exporter /bin/ From 5757e4f6fcd75b233aa8178985918ba7d60b6f0b Mon Sep 17 00:00:00 2001 From: Zhenya Tikhonov Date: Mon, 1 Apr 2024 11:43:59 +0400 Subject: [PATCH 2/2] ci: bump version --- service.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service.yaml b/service.yaml index 1990772..431e876 100644 --- a/service.yaml +++ b/service.yaml @@ -1 +1 @@ -version: 1.28.4 +version: 1.28.5