From f7a6af325525f37a656dfbccc1ac77bac16cb66c Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 5 Nov 2024 07:13:42 -0500 Subject: [PATCH] UPSTREAM: : Bump kube-proxy image to 4.18 base images --- openshift-hack/images/kube-proxy/Dockerfile.rhel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openshift-hack/images/kube-proxy/Dockerfile.rhel b/openshift-hack/images/kube-proxy/Dockerfile.rhel index 463aa423618e6..72573276c5669 100644 --- a/openshift-hack/images/kube-proxy/Dockerfile.rhel +++ b/openshift-hack/images/kube-proxy/Dockerfile.rhel @@ -1,11 +1,11 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.18 AS builder WORKDIR /go/src/k8s.io/kubernetes COPY . . RUN make WHAT='cmd/kube-proxy' && \ mkdir -p /tmp/build && \ cp /go/src/k8s.io/kubernetes/_output/local/bin/linux/$(go env GOARCH)/kube-proxy /tmp/build -FROM registry.ci.openshift.org/ocp/4.17:base-rhel9 +FROM registry.ci.openshift.org/ocp/4.18:base-rhel9 RUN INSTALL_PKGS="conntrack-tools iptables nftables" && \ yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ yum clean all && rm -rf /var/cache/*