Skip to content
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
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ dependencies:
match: "DEBIAN_BASE_VERSION: 'bookworm-v((([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)'"

- name: "registry.k8s.io/build-image/distroless-iptables (distroless-bookworm-go1.26)"
version: v0.9.5
version: v0.9.6
refPaths:
- path: images/build/distroless-iptables/Makefile
match: IMAGE_VERSION\ \?=\ v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)
Expand All @@ -436,7 +436,7 @@ dependencies:
match: GORUNNER_VERSION:\ \'v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)\'

- name: "registry.k8s.io/build-image/distroless-iptables (distroless-bookworm-go1.25)"
version: v0.8.13
version: v0.8.14
refPaths:
- path: images/build/distroless-iptables/variants.yaml
match: IMAGE_VERSION:\ \'v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)\'
Expand Down
2 changes: 1 addition & 1 deletion images/build/distroless-iptables/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ REGISTRY?="gcr.io/k8s-staging-build-image"
IMAGE=$(REGISTRY)/distroless-iptables

TAG ?= $(shell git describe --tags --always --dirty)
IMAGE_VERSION ?= v0.9.5
IMAGE_VERSION ?= v0.9.6
CONFIG ?= distroless-bookworm
BASEIMAGE ?= debian:bookworm-slim
GORUNNER_VERSION ?= v2.4.0-go1.26.5-bookworm.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ RUN apt-get -y update && \
git ca-certificates build-essential autoconf automake libtool \
bison flex pkg-config libgmp-dev libreadline-dev \
libedit-dev libjansson-dev \
libmnl-dev libnftnl-dev
libmnl-dev libnftnl-dev libxtables-dev

# Build nftables
ADD --checksum=sha256:bef0c9cfdca5f8b988957046c2cb33ef9869730593da0eacae4748201acf1116 https://netfilter.org/projects/nftables/files/nftables-1.0.6.1.tar.xz /
COPY patches /patches
COPY setup-metadata.sh /setup-metadata.sh
RUN cd / && tar xf /nftables-1.0.6.1.tar.xz && cd nftables-1.0.6.1 && \
for p in $(cat /patches/series); do patch -p1 --forward < "/patches/$p" || exit 1; done && \
./configure --disable-man-doc --enable-static --disable-shared --sbindir=/usr/sbin && make && make install && \
./configure --with-json --with-xtables --disable-man-doc --enable-static --disable-shared --sbindir=/usr/sbin && make && make install && \
/setup-metadata.sh

RUN ldconfig
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
free-prototype.diff

4 changes: 2 additions & 2 deletions images/build/distroless-iptables/distroless-trixie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ RUN apt-get -y update && \
git ca-certificates build-essential autoconf automake libtool \
bison flex pkg-config libgmp-dev libreadline-dev \
libedit-dev libjansson-dev \
libmnl-dev libnftnl-dev
libmnl-dev libnftnl-dev libxtables-dev

# Build nftables
ADD --checksum=sha256:bef0c9cfdca5f8b988957046c2cb33ef9869730593da0eacae4748201acf1116 https://netfilter.org/projects/nftables/files/nftables-1.0.6.1.tar.xz /
COPY patches /patches
COPY setup-metadata.sh /setup-metadata.sh
RUN cd / && tar xf /nftables-1.0.6.1.tar.xz && cd nftables-1.0.6.1 && \
for p in $(cat /patches/series); do patch -p1 --forward < "/patches/$p" || exit 1; done && \
./configure --disable-man-doc --enable-static --disable-shared --sbindir=/usr/sbin && make && make install && \
./configure --with-json --with-xtables --disable-man-doc --enable-static --disable-shared --sbindir=/usr/sbin && make && make install && \
/setup-metadata.sh

RUN ldconfig
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
free-prototype.diff

4 changes: 2 additions & 2 deletions images/build/distroless-iptables/variants.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
variants:
distroless-bookworm-go1.26:
CONFIG: 'distroless-bookworm'
IMAGE_VERSION: 'v0.9.5'
IMAGE_VERSION: 'v0.9.6'
BASEIMAGE: 'debian:bookworm-slim'
GORUNNER_VERSION: 'v2.4.0-go1.26.5-bookworm.0'
distroless-bookworm-go1.25:
CONFIG: 'distroless-bookworm'
IMAGE_VERSION: 'v0.8.13'
IMAGE_VERSION: 'v0.8.14'
BASEIMAGE: 'debian:bookworm-slim'
GORUNNER_VERSION: 'v2.4.0-go1.25.12-bookworm.0'