Skip to content

Commit b75132f

Browse files
Merge pull request #1223 from Nordix/uplift-ipam-1.3.4/adil
🌱 Uplift ipam to v1.3.4
2 parents 7bea2e7 + b7b13ad commit b75132f

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.19
44

55
require (
66
github.com/google/gofuzz v1.2.0
7-
github.com/metal3-io/ip-address-manager/api v1.3.3
7+
github.com/metal3-io/ip-address-manager/api v1.3.4
88
github.com/onsi/gomega v1.24.1
99
github.com/pkg/errors v0.9.1
1010
golang.org/x/net v0.14.0

api/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJ
211211
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
212212
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=
213213
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
214-
github.com/metal3-io/ip-address-manager/api v1.3.3 h1:8PDzPUqThIGIWeMRlSTfqhJlCcOaKMbEQm+0ou0UImA=
215-
github.com/metal3-io/ip-address-manager/api v1.3.3/go.mod h1:rQ+B0dk+4C9hYacdZbJI05TX7m0wTdcoSwU5To9UY7k=
214+
github.com/metal3-io/ip-address-manager/api v1.3.4 h1:aa6y+LTRAmW1d3/PBoUN3v9uMOSG/2CBqxFhyfe++Go=
215+
github.com/metal3-io/ip-address-manager/api v1.3.4/go.mod h1:rQ+B0dk+4C9hYacdZbJI05TX7m0wTdcoSwU5To9UY7k=
216216
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
217217
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
218218
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=

config/ipam/image_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ spec:
88
spec:
99
containers:
1010
# Change the value of image field below to your controller image URL
11-
- image: quay.io/metal3-io/ip-address-manager:v1.3.2
11+
- image: quay.io/metal3-io/ip-address-manager:v1.3.4
1212
name: manager

config/ipam/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Kustomization
33

44
# When updating the release, update also the image tag in image_patch.yaml
55
resources:
6-
- https://github.com/metal3-io/ip-address-manager/releases/download/v1.3.2/ipam-components.yaml
6+
- https://github.com/metal3-io/ip-address-manager/releases/download/v1.3.4/ipam-components.yaml
77

88
patchesStrategicMerge:
99
- image_patch.yaml

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/golang/mock v1.6.0
88
github.com/metal3-io/baremetal-operator/apis v0.2.0
99
github.com/metal3-io/cluster-api-provider-metal3/api v0.0.0
10-
github.com/metal3-io/ip-address-manager/api v1.3.3
10+
github.com/metal3-io/ip-address-manager/api v1.3.4
1111
github.com/onsi/ginkgo/v2 v2.6.0
1212
github.com/onsi/gomega v1.24.1
1313
github.com/pkg/errors v0.9.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,8 @@ github.com/metal3-io/baremetal-operator/apis v0.2.0 h1:JdkLP6zCp3KzWvycrUFbAH2ge
298298
github.com/metal3-io/baremetal-operator/apis v0.2.0/go.mod h1:B5/1J/S2eXK8Fn9Aho/zgCeie7A8Nq5+dJvAbyzrS/c=
299299
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.2.0 h1:SWZAojnNaja3+yLO74Etv//xkG60lFSKKEWR/FXqNgE=
300300
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.2.0/go.mod h1:Dck2B6BQX3L+AE2Xe+LzrVPP1A/zQkhCU/aSVbsi7Nw=
301-
github.com/metal3-io/ip-address-manager/api v1.3.3 h1:8PDzPUqThIGIWeMRlSTfqhJlCcOaKMbEQm+0ou0UImA=
302-
github.com/metal3-io/ip-address-manager/api v1.3.3/go.mod h1:rQ+B0dk+4C9hYacdZbJI05TX7m0wTdcoSwU5To9UY7k=
301+
github.com/metal3-io/ip-address-manager/api v1.3.4 h1:aa6y+LTRAmW1d3/PBoUN3v9uMOSG/2CBqxFhyfe++Go=
302+
github.com/metal3-io/ip-address-manager/api v1.3.4/go.mod h1:rQ+B0dk+4C9hYacdZbJI05TX7m0wTdcoSwU5To9UY7k=
303303
github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
304304
github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=
305305
github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw=

test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ require (
7777
github.com/mattn/go-isatty v0.0.16 // indirect
7878
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
7979
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.1.2 // indirect
80-
github.com/metal3-io/ip-address-manager/api v1.3.3 // indirect
80+
github.com/metal3-io/ip-address-manager/api v1.3.4 // indirect
8181
github.com/mitchellh/copystructure v1.2.0 // indirect
8282
github.com/mitchellh/mapstructure v1.5.0 // indirect
8383
github.com/mitchellh/reflectwalk v1.0.2 // indirect

test/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@ github.com/metal3-io/baremetal-operator/apis v0.2.0 h1:JdkLP6zCp3KzWvycrUFbAH2ge
343343
github.com/metal3-io/baremetal-operator/apis v0.2.0/go.mod h1:B5/1J/S2eXK8Fn9Aho/zgCeie7A8Nq5+dJvAbyzrS/c=
344344
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.1.2 h1:9fbzEAanq4zO2quDVDb9Bg3dWjkKy8tUihZJsWGmxGs=
345345
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.1.2/go.mod h1:dfWv/o1IDK2hrz2xJG2y1++GzYWxkRx0l/qjtpV6H7k=
346-
github.com/metal3-io/ip-address-manager/api v1.3.3 h1:8PDzPUqThIGIWeMRlSTfqhJlCcOaKMbEQm+0ou0UImA=
347-
github.com/metal3-io/ip-address-manager/api v1.3.3/go.mod h1:rQ+B0dk+4C9hYacdZbJI05TX7m0wTdcoSwU5To9UY7k=
346+
github.com/metal3-io/ip-address-manager/api v1.3.4 h1:aa6y+LTRAmW1d3/PBoUN3v9uMOSG/2CBqxFhyfe++Go=
347+
github.com/metal3-io/ip-address-manager/api v1.3.4/go.mod h1:rQ+B0dk+4C9hYacdZbJI05TX7m0wTdcoSwU5To9UY7k=
348348
github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
349349
github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=
350350
github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw=

0 commit comments

Comments
 (0)