Skip to content
Open
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 .ci-operator.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build_root_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.24-openshift-4.20
tag: rhel-9-release-golang-1.25-openshift-4.22
8 changes: 4 additions & 4 deletions Dockerfile.openshift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.20 AS rhel9
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.25-openshift-4.22 AS rhel9
ADD . /go/src/github.com/openshift/whereabouts
WORKDIR /go/src/github.com/openshift/whereabouts
ENV CGO_ENABLED=1
Expand All @@ -8,7 +8,7 @@ RUN go build -mod vendor -o bin/ip-control-loop cmd/controlloop/controlloop.go
RUN go build -mod vendor -o bin/node-slice-controller cmd/nodeslicecontroller/node_slice_controller.go
WORKDIR /

FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.24-openshift-4.20 AS rhel8
FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.25-openshift-4.22 AS rhel8
ADD . /go/src/github.com/openshift/whereabouts
WORKDIR /go/src/github.com/openshift/whereabouts
ENV CGO_ENABLED=1
Expand All @@ -18,7 +18,7 @@ RUN go build -mod vendor -o bin/ip-control-loop cmd/controlloop/controlloop.go
RUN go build -mod vendor -o bin/node-slice-controller cmd/nodeslicecontroller/node_slice_controller.go
WORKDIR /

FROM registry.ci.openshift.org/ocp/4.20:base-rhel9
FROM registry.ci.openshift.org/ocp/4.22:base-rhel9
RUN mkdir -p /usr/src/whereabouts/images && \
mkdir -p /usr/src/whereabouts/bin && \
mkdir -p /usr/src/whereabouts/rhel9/bin && \
Expand All @@ -38,4 +38,4 @@ LABEL org.opencontainers.image.source https://github.com/openshift/whereabouts
LABEL io.k8s.display-name="Whereabouts CNI" \
io.k8s.description="This is a component of OpenShift Container Platform and provides a cluster-wide IPAM CNI plugin." \
io.openshift.tags="openshift" \
maintainer="CTO Networking <nfvpe-container@redhat.com>"
maintainer="CTO Networking <nfvpe-container@redhat.com>"
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/k8snetworkplumbingwg/whereabouts

go 1.24.2

toolchain go1.24.6
go 1.25.9

require (
github.com/blang/semver v3.5.1+incompatible
Expand Down