From d86906eae10453d24731dafe7fdf1b99e276c4f6 Mon Sep 17 00:00:00 2001 From: Peppi-Lotta Date: Wed, 13 Nov 2024 14:34:50 +0200 Subject: [PATCH] Bump Golang and IPAM Signed-off-by: Peppi-Lotta --- api/go.mod | 2 +- api/go.sum | 4 ++-- config/ipam/image_patch.yaml | 2 +- config/ipam/kustomization.yaml | 2 +- go.mod | 2 +- go.sum | 4 ++-- hack/fake-apiserver/Dockerfile | 2 +- test/go.mod | 2 +- test/go.sum | 4 ++-- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/api/go.mod b/api/go.mod index 9af3781f4d..c781443085 100644 --- a/api/go.mod +++ b/api/go.mod @@ -3,7 +3,7 @@ module github.com/metal3-io/cluster-api-provider-metal3/api go 1.22.3 require ( - github.com/metal3-io/ip-address-manager/api v1.8.0 + github.com/metal3-io/ip-address-manager/api v1.8.1 github.com/onsi/gomega v1.35.1 github.com/pkg/errors v0.9.1 golang.org/x/net v0.31.0 diff --git a/api/go.sum b/api/go.sum index 338718ee70..94238dc541 100644 --- a/api/go.sum +++ b/api/go.sum @@ -65,8 +65,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/metal3-io/ip-address-manager/api v1.8.0 h1:qEemVSb45uDbbQonr2StMV21RfSKNSO/NrPnhApV90w= -github.com/metal3-io/ip-address-manager/api v1.8.0/go.mod h1:0PjnN4ke64Jh6A3U04mMvV2sBwePa7HKkiZXazktCTk= +github.com/metal3-io/ip-address-manager/api v1.8.1 h1:hFWgKmfO02AGnY/+QEd6+IY8BuQTHK25BhYOIwu2C2k= +github.com/metal3-io/ip-address-manager/api v1.8.1/go.mod h1:yMOQSHu0XjbRaMP38a7ZiJ27zX/2L2YBcSHRLXvZ6aM= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= diff --git a/config/ipam/image_patch.yaml b/config/ipam/image_patch.yaml index 14c49b19c2..2f5baac592 100644 --- a/config/ipam/image_patch.yaml +++ b/config/ipam/image_patch.yaml @@ -8,5 +8,5 @@ spec: spec: containers: # Change the value of image field below to your controller image URL - - image: quay.io/metal3-io/ip-address-manager:v1.8.0 + - image: quay.io/metal3-io/ip-address-manager:v1.8.1 name: manager diff --git a/config/ipam/kustomization.yaml b/config/ipam/kustomization.yaml index ff62d33149..29ced86093 100644 --- a/config/ipam/kustomization.yaml +++ b/config/ipam/kustomization.yaml @@ -3,7 +3,7 @@ kind: Kustomization # When updating the release, update also the image tag in image_patch.yaml resources: -- /~https://github.com/metal3-io/ip-address-manager/releases/download/v1.8.0/ipam-components.yaml +- /~https://github.com/metal3-io/ip-address-manager/releases/download/v1.8.1/ipam-components.yaml patches: - path: image_patch.yaml diff --git a/go.mod b/go.mod index bd6aa77bf9..288684af70 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ require ( github.com/golang/mock v1.6.0 github.com/metal3-io/baremetal-operator/apis v0.8.0 github.com/metal3-io/cluster-api-provider-metal3/api v0.0.0 - github.com/metal3-io/ip-address-manager/api v1.8.0 + github.com/metal3-io/ip-address-manager/api v1.8.1 github.com/onsi/ginkgo/v2 v2.21.0 github.com/onsi/gomega v1.35.1 github.com/pkg/errors v0.9.1 diff --git a/go.sum b/go.sum index 518be414ce..a94332e245 100644 --- a/go.sum +++ b/go.sum @@ -134,8 +134,8 @@ github.com/metal3-io/baremetal-operator/apis v0.8.0 h1:dy1Z6IRdlRi8tsEww8M3CmOay github.com/metal3-io/baremetal-operator/apis v0.8.0/go.mod h1:eeCH0K7XD17AbEp479XtmYTF0QwOqNkoTCQf3bdZSzk= github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0 h1:EOm8LnMRFANRM+xiiDTNpwjITK6g9xyNwLlzFo1aplw= github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0/go.mod h1:f1a/eqi7MA+mf1xFshToVfn02jcPDMw3aYQinLTlMVQ= -github.com/metal3-io/ip-address-manager/api v1.8.0 h1:qEemVSb45uDbbQonr2StMV21RfSKNSO/NrPnhApV90w= -github.com/metal3-io/ip-address-manager/api v1.8.0/go.mod h1:0PjnN4ke64Jh6A3U04mMvV2sBwePa7HKkiZXazktCTk= +github.com/metal3-io/ip-address-manager/api v1.8.1 h1:hFWgKmfO02AGnY/+QEd6+IY8BuQTHK25BhYOIwu2C2k= +github.com/metal3-io/ip-address-manager/api v1.8.1/go.mod h1:yMOQSHu0XjbRaMP38a7ZiJ27zX/2L2YBcSHRLXvZ6aM= github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw= github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s= github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ= diff --git a/hack/fake-apiserver/Dockerfile b/hack/fake-apiserver/Dockerfile index e925af8c12..f04ffacc22 100644 --- a/hack/fake-apiserver/Dockerfile +++ b/hack/fake-apiserver/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # Support FROM override -ARG BUILD_IMAGE=docker.io/golang:1.22.7@sha256:192683db8982323952988c7b86c098ee7ecc6cbeb202bf7c113ff9be5358367c +ARG BUILD_IMAGE=docker.io/golang:1.22.9@sha256:97ccb917d1dfe5b12cb4cfea1fb37989b28d3a87d28e89f27a71336c4700a87f ARG BASE_IMAGE=gcr.io/distroless/static:nonroot@sha256:9ecc53c269509f63c69a266168e4a687c7eb8c0cfd753bd8bfcaa4f58a90876f # Build the fkas binary on golang image diff --git a/test/go.mod b/test/go.mod index 2292ed3e02..37ee90d744 100644 --- a/test/go.mod +++ b/test/go.mod @@ -8,7 +8,7 @@ require ( github.com/jinzhu/copier v0.4.0 github.com/metal3-io/baremetal-operator/apis v0.8.0 github.com/metal3-io/cluster-api-provider-metal3/api v0.0.0 - github.com/metal3-io/ip-address-manager/api v1.8.0 + github.com/metal3-io/ip-address-manager/api v1.8.1 github.com/onsi/ginkgo/v2 v2.21.0 github.com/onsi/gomega v1.35.1 github.com/pkg/errors v0.9.1 diff --git a/test/go.sum b/test/go.sum index 8a29f3b021..ed349303ac 100644 --- a/test/go.sum +++ b/test/go.sum @@ -176,8 +176,8 @@ github.com/metal3-io/baremetal-operator/apis v0.8.0 h1:dy1Z6IRdlRi8tsEww8M3CmOay github.com/metal3-io/baremetal-operator/apis v0.8.0/go.mod h1:eeCH0K7XD17AbEp479XtmYTF0QwOqNkoTCQf3bdZSzk= github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0 h1:EOm8LnMRFANRM+xiiDTNpwjITK6g9xyNwLlzFo1aplw= github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0/go.mod h1:f1a/eqi7MA+mf1xFshToVfn02jcPDMw3aYQinLTlMVQ= -github.com/metal3-io/ip-address-manager/api v1.8.0 h1:qEemVSb45uDbbQonr2StMV21RfSKNSO/NrPnhApV90w= -github.com/metal3-io/ip-address-manager/api v1.8.0/go.mod h1:0PjnN4ke64Jh6A3U04mMvV2sBwePa7HKkiZXazktCTk= +github.com/metal3-io/ip-address-manager/api v1.8.1 h1:hFWgKmfO02AGnY/+QEd6+IY8BuQTHK25BhYOIwu2C2k= +github.com/metal3-io/ip-address-manager/api v1.8.1/go.mod h1:yMOQSHu0XjbRaMP38a7ZiJ27zX/2L2YBcSHRLXvZ6aM= github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw= github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=