Skip to content

Commit 5320d69

Browse files
Merge pull request #929 from Nordix/uplift-ipam-moshiur
🌱Uplift IPAM release-1.2 tag v1.2.2
2 parents 909f05b + d5341dc commit 5320d69

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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.17
44

55
require (
66
github.com/google/gofuzz v1.2.0
7-
github.com/metal3-io/ip-address-manager/api v0.0.0-20221109122800-a505a415c34c
7+
github.com/metal3-io/ip-address-manager/api v1.2.2
88
github.com/onsi/gomega v1.18.1
99
github.com/pkg/errors v0.9.1
1010
golang.org/x/net v0.8.0

api/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,8 +454,8 @@ github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh
454454
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
455455
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=
456456
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
457-
github.com/metal3-io/ip-address-manager/api v0.0.0-20221109122800-a505a415c34c h1:p9Uy3VWGSxkPYyd0xTPM03vKil93ZT7bNrAKpG/hVIM=
458-
github.com/metal3-io/ip-address-manager/api v0.0.0-20221109122800-a505a415c34c/go.mod h1:FAovfa/DK3etr+Tt0JS1nHU2hHBayOyQY1GVA74oiXc=
457+
github.com/metal3-io/ip-address-manager/api v1.2.2 h1:HxI8qQhcZIXBjAkb83U4E9iZ7dTUqOz6SptRMBFRIcA=
458+
github.com/metal3-io/ip-address-manager/api v1.2.2/go.mod h1:lHK6WHjAtF8yC8Semez2ZHC/7Fkx0Dv+IzQXUt7o8uk=
459459
github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
460460
github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso=
461461
github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI=

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.2.1
11+
- image: quay.io/metal3-io/ip-address-manager:v1.2.2
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.2.1/ipam-components.yaml
6+
- https://github.com/metal3-io/ip-address-manager/releases/download/v1.2.2/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
@@ -9,7 +9,7 @@ require (
99
github.com/jinzhu/copier v0.3.2
1010
github.com/metal3-io/baremetal-operator/apis v0.1.2
1111
github.com/metal3-io/cluster-api-provider-metal3/api v0.0.0
12-
github.com/metal3-io/ip-address-manager/api v0.0.0-20221109122800-a505a415c34c
12+
github.com/metal3-io/ip-address-manager/api v1.2.2
1313
github.com/onsi/ginkgo v1.16.5
1414
github.com/onsi/gomega v1.19.0
1515
github.com/pkg/errors v0.9.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -502,8 +502,8 @@ github.com/metal3-io/baremetal-operator/apis v0.1.2/go.mod h1:wzk14L1TaVuSSZa1vH
502502
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.1.0/go.mod h1:/PSTQInIZmfuOmAp/pSgZAs4txs6T49woC0MYIa4QzE=
503503
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.1.1 h1:dt2lc//fo1KQg8FMMTTI5TxB4FAonZftK53j7IQl130=
504504
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.1.1/go.mod h1:/PSTQInIZmfuOmAp/pSgZAs4txs6T49woC0MYIa4QzE=
505-
github.com/metal3-io/ip-address-manager/api v0.0.0-20221109122800-a505a415c34c h1:p9Uy3VWGSxkPYyd0xTPM03vKil93ZT7bNrAKpG/hVIM=
506-
github.com/metal3-io/ip-address-manager/api v0.0.0-20221109122800-a505a415c34c/go.mod h1:FAovfa/DK3etr+Tt0JS1nHU2hHBayOyQY1GVA74oiXc=
505+
github.com/metal3-io/ip-address-manager/api v1.2.2 h1:HxI8qQhcZIXBjAkb83U4E9iZ7dTUqOz6SptRMBFRIcA=
506+
github.com/metal3-io/ip-address-manager/api v1.2.2/go.mod h1:lHK6WHjAtF8yC8Semez2ZHC/7Fkx0Dv+IzQXUt7o8uk=
507507
github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
508508
github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso=
509509
github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI=

0 commit comments

Comments
 (0)