From 7cfe0394898f2a14e51bb2f601e39c8f40d32ac4 Mon Sep 17 00:00:00 2001 From: Huy Mai Date: Tue, 3 Sep 2024 13:28:55 +0300 Subject: [PATCH] Uplift BMO to v0.8.0 and IPAM to v1.8.0 Signed-off-by: Huy Mai --- api/go.mod | 2 +- api/go.sum | 4 ++-- config/ipam/image_patch.yaml | 2 +- config/ipam/kustomization.yaml | 2 +- go.mod | 6 +++--- go.sum | 12 ++++++------ test/go.mod | 6 +++--- test/go.sum | 12 ++++++------ 8 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/go.mod b/api/go.mod index 050efd41f0..2df8feec2d 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-rc.0 + github.com/metal3-io/ip-address-manager/api v1.8.0 github.com/onsi/gomega v1.34.2 github.com/pkg/errors v0.9.1 golang.org/x/net v0.28.0 diff --git a/api/go.sum b/api/go.sum index 49a1015728..8a64324878 100644 --- a/api/go.sum +++ b/api/go.sum @@ -65,8 +65,8 @@ github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0 github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= -github.com/metal3-io/ip-address-manager/api v1.8.0-rc.0 h1:cAHXlwguKbFdt3iPfeV5EXLmd3+7YYAmJvhlIi+7Qzk= -github.com/metal3-io/ip-address-manager/api v1.8.0-rc.0/go.mod h1:0PjnN4ke64Jh6A3U04mMvV2sBwePa7HKkiZXazktCTk= +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/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 5bfb9ad362..14c49b19c2 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-rc.0 + - image: quay.io/metal3-io/ip-address-manager:v1.8.0 name: manager diff --git a/config/ipam/kustomization.yaml b/config/ipam/kustomization.yaml index 9c6edfc357..ff62d33149 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-rc.0/ipam-components.yaml +- https://github.com/metal3-io/ip-address-manager/releases/download/v1.8.0/ipam-components.yaml patches: - path: image_patch.yaml diff --git a/go.mod b/go.mod index a434a201bf..598773ead5 100644 --- a/go.mod +++ b/go.mod @@ -5,9 +5,9 @@ go 1.22.3 require ( github.com/go-logr/logr v1.4.2 github.com/golang/mock v1.6.0 - github.com/metal3-io/baremetal-operator/apis v0.8.0-rc.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-rc.0 + github.com/metal3-io/ip-address-manager/api v1.8.0 github.com/onsi/ginkgo/v2 v2.20.2 github.com/onsi/gomega v1.34.2 github.com/pkg/errors v0.9.1 @@ -63,7 +63,7 @@ require ( github.com/json-iterator/go v1.1.12 // indirect github.com/mailru/easyjson v0.7.7 // indirect github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect - github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0-rc.0 // indirect + github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect diff --git a/go.sum b/go.sum index f89d063876..5d9d234e21 100644 --- a/go.sum +++ b/go.sum @@ -129,12 +129,12 @@ github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0 github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= -github.com/metal3-io/baremetal-operator/apis v0.8.0-rc.0 h1:Kq7vE910VkEnIXJMt9wESHCqL976eCt/S01BsJzqYII= -github.com/metal3-io/baremetal-operator/apis v0.8.0-rc.0/go.mod h1:eeCH0K7XD17AbEp479XtmYTF0QwOqNkoTCQf3bdZSzk= -github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0-rc.0 h1:xZVvdWyBBOUvKbiWsnwyuijVjPhpSjiSId9zs0uU6nM= -github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0-rc.0/go.mod h1:f1a/eqi7MA+mf1xFshToVfn02jcPDMw3aYQinLTlMVQ= -github.com/metal3-io/ip-address-manager/api v1.8.0-rc.0 h1:cAHXlwguKbFdt3iPfeV5EXLmd3+7YYAmJvhlIi+7Qzk= -github.com/metal3-io/ip-address-manager/api v1.8.0-rc.0/go.mod h1:0PjnN4ke64Jh6A3U04mMvV2sBwePa7HKkiZXazktCTk= +github.com/metal3-io/baremetal-operator/apis v0.8.0 h1:dy1Z6IRdlRi8tsEww8M3CmOayWZE0yb+xJdNx065FJA= +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/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/test/go.mod b/test/go.mod index 20387cfc03..9172f37806 100644 --- a/test/go.mod +++ b/test/go.mod @@ -6,9 +6,9 @@ require ( github.com/blang/semver v3.5.1+incompatible github.com/docker/docker v27.2.0+incompatible github.com/jinzhu/copier v0.4.0 - github.com/metal3-io/baremetal-operator/apis v0.8.0-rc.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-rc.0 + github.com/metal3-io/ip-address-manager/api v1.8.0 github.com/onsi/ginkgo/v2 v2.20.2 github.com/onsi/gomega v1.34.2 github.com/pkg/errors v0.9.1 @@ -89,7 +89,7 @@ require ( github.com/mailru/easyjson v0.7.7 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect - github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0-rc.0 // indirect + github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect diff --git a/test/go.sum b/test/go.sum index dae31f6d4d..3236b9d38e 100644 --- a/test/go.sum +++ b/test/go.sum @@ -189,12 +189,12 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= -github.com/metal3-io/baremetal-operator/apis v0.8.0-rc.0 h1:Kq7vE910VkEnIXJMt9wESHCqL976eCt/S01BsJzqYII= -github.com/metal3-io/baremetal-operator/apis v0.8.0-rc.0/go.mod h1:eeCH0K7XD17AbEp479XtmYTF0QwOqNkoTCQf3bdZSzk= -github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0-rc.0 h1:xZVvdWyBBOUvKbiWsnwyuijVjPhpSjiSId9zs0uU6nM= -github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.8.0-rc.0/go.mod h1:f1a/eqi7MA+mf1xFshToVfn02jcPDMw3aYQinLTlMVQ= -github.com/metal3-io/ip-address-manager/api v1.8.0-rc.0 h1:cAHXlwguKbFdt3iPfeV5EXLmd3+7YYAmJvhlIi+7Qzk= -github.com/metal3-io/ip-address-manager/api v1.8.0-rc.0/go.mod h1:0PjnN4ke64Jh6A3U04mMvV2sBwePa7HKkiZXazktCTk= +github.com/metal3-io/baremetal-operator/apis v0.8.0 h1:dy1Z6IRdlRi8tsEww8M3CmOayWZE0yb+xJdNx065FJA= +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/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw= 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=