Skip to content

Commit 340cc42

Browse files
committed
Bump k8s dependencies to 1.33; go 1.24
1 parent 4a4e94c commit 340cc42

File tree

4 files changed

+191
-188
lines changed

4 files changed

+191
-188
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19 AS builder
1+
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.20 AS builder
22
WORKDIR /go/src/github.com/openshift/machine-api-provider-aws
33
COPY . .
44
# VERSION env gets set in the openshift/release image and refers to the golang version, which interfers with our own

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
16-
ENVTEST_K8S_VERSION = 1.32.1
16+
ENVTEST_K8S_VERSION = 1.33.2
1717

1818
PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
1919
ENVTEST = go run ${PROJECT_DIR}/vendor/sigs.k8s.io/controller-runtime/tools/setup-envtest
@@ -39,7 +39,7 @@ REPO_PATH ?= github.com/openshift/machine-api-provider-aws
3939
LD_FLAGS ?= -X $(REPO_PATH)/pkg/version.Raw=$(VERSION) -extldflags "-static"
4040
MUTABLE_TAG ?= latest
4141
IMAGE = origin-aws-machine-controllers
42-
BUILD_IMAGE ?= registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19
42+
BUILD_IMAGE ?= registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.20
4343

4444
# race tests need CGO_ENABLED, everything else should have it disabled
4545
CGO_ENABLED = 0

go.mod

Lines changed: 38 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
module github.com/openshift/machine-api-provider-aws
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
6-
github.com/aws/aws-sdk-go v1.55.6
6+
github.com/aws/aws-sdk-go v1.55.7
77
github.com/blang/semver v3.5.1+incompatible
88
github.com/go-logr/logr v1.4.2
99
github.com/golang/mock v1.6.0
10-
github.com/onsi/ginkgo/v2 v2.22.2
11-
github.com/onsi/gomega v1.36.2
12-
github.com/openshift/api v0.0.0-20250528100135-a463917701ab
13-
github.com/openshift/library-go v0.0.0-20250203131244-80620876b7c2
14-
github.com/openshift/machine-api-operator v0.2.1-0.20250704070513-81d86b5a1ef5
15-
k8s.io/api v0.32.2
16-
k8s.io/apimachinery v0.32.2
17-
k8s.io/apiserver v0.32.2
18-
k8s.io/client-go v0.32.2
19-
k8s.io/component-base v0.32.2
10+
github.com/onsi/ginkgo/v2 v2.23.4
11+
github.com/onsi/gomega v1.37.0
12+
github.com/openshift/api v0.0.0-20250710004639-926605d3338b
13+
github.com/openshift/library-go v0.0.0-20250711143941-47604345e7ea
14+
github.com/openshift/machine-api-operator v0.2.1-0.20250721183005-388c07321caf
15+
k8s.io/api v0.33.3
16+
k8s.io/apimachinery v0.33.3
17+
k8s.io/apiserver v0.33.3
18+
k8s.io/client-go v0.33.3
19+
k8s.io/component-base v0.33.3
2020
k8s.io/klog/v2 v2.130.1
2121
k8s.io/utils v0.0.0-20241210054802-24370beab758
22-
sigs.k8s.io/controller-runtime v0.20.1
23-
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20250211091558-894df3a7e664
24-
sigs.k8s.io/controller-tools v0.17.2
22+
sigs.k8s.io/controller-runtime v0.21.0
23+
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20250520071515-71f7db556ca5
24+
sigs.k8s.io/controller-tools v0.18.0
2525
)
2626

2727
require (
@@ -46,21 +46,18 @@ require (
4646
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4747
github.com/gobuffalo/flect v1.0.3 // indirect
4848
github.com/gogo/protobuf v1.3.2 // indirect
49-
github.com/golang/protobuf v1.5.4 // indirect
5049
github.com/google/btree v1.1.3 // indirect
5150
github.com/google/gnostic-models v0.6.9 // indirect
52-
github.com/google/go-cmp v0.6.0 // indirect
53-
github.com/google/gofuzz v1.2.0 // indirect
54-
github.com/google/pprof v0.0.0-20250208200701-d0013a598941 // indirect
51+
github.com/google/go-cmp v0.7.0 // indirect
52+
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
5553
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
5654
github.com/google/uuid v1.6.0 // indirect
57-
github.com/gorilla/websocket v1.5.3 // indirect
55+
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
5856
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
5957
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6058
github.com/jmespath/go-jmespath v0.4.0 // indirect
6159
github.com/josharian/intern v1.0.0 // indirect
6260
github.com/json-iterator/go v1.1.12 // indirect
63-
github.com/klauspost/compress v1.17.11 // indirect
6461
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
6562
github.com/mailru/easyjson v0.9.0 // indirect
6663
github.com/mattn/go-colorable v0.1.14 // indirect
@@ -73,45 +70,49 @@ require (
7370
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
7471
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
7572
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
76-
github.com/openshift/client-go v0.0.0-20250131180035-f7ec47e2d87a // indirect
73+
github.com/openshift/client-go v0.0.0-20250710075018-396b36f983ee // indirect
7774
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
7875
github.com/pkg/errors v0.9.1 // indirect
79-
github.com/prometheus/client_golang v1.20.5 // indirect
76+
github.com/prometheus/client_golang v1.22.0 // indirect
8077
github.com/prometheus/client_model v0.6.1 // indirect
8178
github.com/prometheus/common v0.62.0 // indirect
8279
github.com/prometheus/procfs v0.15.1 // indirect
8380
github.com/russross/blackfriday/v2 v2.1.0 // indirect
8481
github.com/spf13/afero v1.12.0 // indirect
85-
github.com/spf13/cobra v1.8.1 // indirect
82+
github.com/spf13/cobra v1.9.1 // indirect
8683
github.com/spf13/pflag v1.0.6 // indirect
8784
github.com/x448/float16 v0.8.4 // indirect
8885
github.com/xlab/treeprint v1.2.0 // indirect
8986
go.opentelemetry.io/otel v1.34.0 // indirect
9087
go.opentelemetry.io/otel/trace v1.34.0 // indirect
88+
go.uber.org/automaxprocs v1.6.0 // indirect
9189
go.uber.org/multierr v1.11.0 // indirect
9290
go.uber.org/zap v1.27.0 // indirect
93-
golang.org/x/mod v0.23.0 // indirect
94-
golang.org/x/net v0.35.0 // indirect
95-
golang.org/x/oauth2 v0.26.0 // indirect
96-
golang.org/x/sync v0.11.0 // indirect
97-
golang.org/x/sys v0.30.0 // indirect
98-
golang.org/x/term v0.29.0 // indirect
99-
golang.org/x/text v0.22.0 // indirect
91+
golang.org/x/mod v0.24.0 // indirect
92+
golang.org/x/net v0.39.0 // indirect
93+
golang.org/x/oauth2 v0.27.0 // indirect
94+
golang.org/x/sync v0.14.0 // indirect
95+
golang.org/x/sys v0.32.0 // indirect
96+
golang.org/x/term v0.31.0 // indirect
97+
golang.org/x/text v0.25.0 // indirect
10098
golang.org/x/time v0.10.0 // indirect
101-
golang.org/x/tools v0.30.0 // indirect
99+
golang.org/x/tools v0.32.0 // indirect
102100
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
103101
google.golang.org/protobuf v1.36.5 // indirect
104102
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
105103
gopkg.in/inf.v0 v0.9.1 // indirect
106104
gopkg.in/yaml.v2 v2.4.0 // indirect
107105
gopkg.in/yaml.v3 v3.0.1 // indirect
108-
k8s.io/apiextensions-apiserver v0.32.2 // indirect
109-
k8s.io/cli-runtime v0.32.2 // indirect
110-
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
111-
k8s.io/kubectl v0.32.2 // indirect
106+
k8s.io/apiextensions-apiserver v0.33.2 // indirect
107+
k8s.io/cli-runtime v0.33.3 // indirect
108+
k8s.io/code-generator v0.33.2 // indirect
109+
k8s.io/gengo/v2 v2.0.0-20250207200755-1244d31929d7 // indirect
110+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
111+
k8s.io/kubectl v0.33.3 // indirect
112112
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
113113
sigs.k8s.io/kustomize/api v0.19.0 // indirect
114114
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
115-
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
115+
sigs.k8s.io/randfill v1.0.0 // indirect
116+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
116117
sigs.k8s.io/yaml v1.4.0 // indirect
117118
)

0 commit comments

Comments
 (0)