Skip to content

Commit fb73e6a

Browse files
Merge pull request #121 from damdo/bump-k8s-1.31
OCPCLOUD-2729: Bump deps to k8s v1.31
2 parents 5d7649e + 76b51e4 commit fb73e6a

File tree

2,080 files changed

+75603
-50865
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,080 files changed

+75603
-50865
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ endif
2424
VERSION ?= $(shell git describe --always --abbrev=7)
2525
REPO_PATH ?= github.com/openshift/machine-api-provider-azure
2626
LD_FLAGS ?= -X $(REPO_PATH)/pkg/version.Raw=$(VERSION) -extldflags -static
27-
BUILD_IMAGE ?= registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17
27+
BUILD_IMAGE ?= registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.18
2828

2929
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
30-
ENVTEST_K8S_VERSION = 1.30.1
30+
ENVTEST_K8S_VERSION = 1.31
3131

3232
PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
3333
CONTROLLER_GEN = go run ${PROJECT_DIR}/vendor/sigs.k8s.io/controller-tools/cmd/controller-gen
@@ -115,7 +115,7 @@ build: ## build binaries
115115
.PHONY: test
116116
test: ## Run tests
117117
@echo -e "\033[32mTesting...\033[0m"
118-
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path --bin-dir $(PROJECT_DIR)/bin --remote-bucket openshift-kubebuilder-tools --use-deprecated-gcs)" ./hack/ci-test.sh
118+
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path --bin-dir $(PROJECT_DIR)/bin)" ./hack/ci-test.sh
119119

120120
.PHONY: unit
121121
unit: # Run unit test

go.mod

Lines changed: 47 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -6,42 +6,37 @@ toolchain go1.22.1
66

77
require (
88
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
9+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0
10+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
911
github.com/Azure/go-autorest/autorest v0.11.29
1012
github.com/Azure/go-autorest/autorest/to v0.4.0
1113
github.com/ghodss/yaml v1.0.0
1214
github.com/go-logr/logr v1.4.2
1315
github.com/golang/mock v1.6.0
1416
github.com/google/go-cmp v0.6.0
1517
github.com/hashicorp/golang-lru v1.0.2
18+
github.com/jongio/azidext/go/azidext v0.5.0
1619
github.com/mitchellh/mapstructure v1.5.0
17-
github.com/onsi/ginkgo/v2 v2.19.0
18-
github.com/onsi/gomega v1.33.1
19-
github.com/openshift/api v0.0.0-20240904015708-69df64132c91
20-
github.com/openshift/machine-api-operator v0.2.1-0.20240912100427-050b12eb6e05
20+
github.com/onsi/ginkgo/v2 v2.20.2
21+
github.com/onsi/gomega v1.34.2
22+
github.com/openshift/api v0.0.0-20240919193929-2669d1ebc910
23+
github.com/openshift/library-go v0.0.0-20240919205913-c96b82b3762b
24+
github.com/openshift/machine-api-operator v0.2.1-0.20240924110326-1efafa4a6615
2125
github.com/pkg/errors v0.9.1
22-
github.com/spf13/cobra v1.8.0
23-
golang.org/x/crypto v0.24.0
24-
25-
// kube 1.30
26-
k8s.io/api v0.30.2
27-
k8s.io/apimachinery v0.30.2
28-
k8s.io/client-go v0.30.2
29-
k8s.io/klog/v2 v2.120.1
30-
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0
31-
sigs.k8s.io/controller-runtime v0.18.4
32-
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20240608161558-1f5b39fa59d1
33-
sigs.k8s.io/controller-tools v0.15.0
34-
sigs.k8s.io/yaml v1.4.0
35-
)
36-
37-
require (
38-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0
39-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
40-
github.com/jongio/azidext/go/azidext v0.5.0
41-
github.com/openshift/library-go v0.0.0-20240903143724-7c5c5d305ac1
26+
github.com/spf13/cobra v1.8.1
4227
go.uber.org/mock v0.4.0
43-
k8s.io/apiserver v0.30.1
44-
k8s.io/component-base v0.30.2
28+
golang.org/x/crypto v0.26.0
29+
k8s.io/api v0.31.1
30+
k8s.io/apimachinery v0.31.1
31+
k8s.io/apiserver v0.31.1
32+
k8s.io/client-go v0.31.1
33+
k8s.io/component-base v0.31.1
34+
k8s.io/klog/v2 v2.130.1
35+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
36+
sigs.k8s.io/controller-runtime v0.19.0
37+
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20240813182054-0c7827e417ac
38+
sigs.k8s.io/controller-tools v0.16.3
39+
sigs.k8s.io/yaml v1.4.0
4540
)
4641

4742
require (
@@ -57,15 +52,15 @@ require (
5752
github.com/MakeNowJust/heredoc v1.0.0 // indirect
5853
github.com/beorn7/perks v1.0.1 // indirect
5954
github.com/blang/semver/v4 v4.0.0 // indirect
60-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
55+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
6156
github.com/chai2010/gettext-go v1.0.2 // indirect
6257
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
6358
github.com/emicklei/go-restful/v3 v3.12.0 // indirect
64-
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
6559
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
6660
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
6761
github.com/fatih/color v1.17.0 // indirect
6862
github.com/fsnotify/fsnotify v1.7.0 // indirect
63+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
6964
github.com/go-errors/errors v1.4.2 // indirect
7065
github.com/go-logr/zapr v1.3.0 // indirect
7166
github.com/go-openapi/jsonpointer v0.21.0 // indirect
@@ -81,7 +76,7 @@ require (
8176
github.com/google/btree v1.0.1 // indirect
8277
github.com/google/gnostic-models v0.6.8 // indirect
8378
github.com/google/gofuzz v1.2.0 // indirect
84-
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
79+
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
8580
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
8681
github.com/google/uuid v1.6.0 // indirect
8782
github.com/gorilla/websocket v1.5.0 // indirect
@@ -95,51 +90,51 @@ require (
9590
github.com/mailru/easyjson v0.7.7 // indirect
9691
github.com/mattn/go-colorable v0.1.13 // indirect
9792
github.com/mattn/go-isatty v0.0.20 // indirect
98-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
9993
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
100-
github.com/moby/spdystream v0.2.0 // indirect
94+
github.com/moby/spdystream v0.4.0 // indirect
10195
github.com/moby/term v0.5.0 // indirect
10296
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
10397
github.com/modern-go/reflect2 v1.0.2 // indirect
10498
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
10599
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
106100
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
107-
github.com/openshift/client-go v0.0.0-20240904134955-cd42fd3d7408 // indirect
101+
github.com/openshift/client-go v0.0.0-20240918182115-6a8ead8397fd // indirect
108102
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
109103
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
110-
github.com/prometheus/client_golang v1.18.0 // indirect
111-
github.com/prometheus/client_model v0.5.0 // indirect
112-
github.com/prometheus/common v0.45.0 // indirect
113-
github.com/prometheus/procfs v0.12.0 // indirect
104+
github.com/prometheus/client_golang v1.19.1 // indirect
105+
github.com/prometheus/client_model v0.6.1 // indirect
106+
github.com/prometheus/common v0.55.0 // indirect
107+
github.com/prometheus/procfs v0.15.1 // indirect
114108
github.com/russross/blackfriday/v2 v2.1.0 // indirect
115109
github.com/spf13/afero v1.11.0 // indirect
116110
github.com/spf13/pflag v1.0.5 // indirect
111+
github.com/x448/float16 v0.8.4 // indirect
117112
github.com/xlab/treeprint v1.2.0 // indirect
118113
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
119114
go.uber.org/multierr v1.11.0 // indirect
120115
go.uber.org/zap v1.26.0 // indirect
121-
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect
122-
golang.org/x/mod v0.17.0 // indirect
123-
golang.org/x/net v0.26.0 // indirect
124-
golang.org/x/oauth2 v0.18.0 // indirect
125-
golang.org/x/sync v0.7.0 // indirect
126-
golang.org/x/sys v0.21.0 // indirect
127-
golang.org/x/term v0.21.0 // indirect
128-
golang.org/x/text v0.16.0 // indirect
116+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
117+
golang.org/x/mod v0.20.0 // indirect
118+
golang.org/x/net v0.28.0 // indirect
119+
golang.org/x/oauth2 v0.21.0 // indirect
120+
golang.org/x/sync v0.8.0 // indirect
121+
golang.org/x/sys v0.24.0 // indirect
122+
golang.org/x/term v0.23.0 // indirect
123+
golang.org/x/text v0.17.0 // indirect
129124
golang.org/x/time v0.5.0 // indirect
130-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
125+
golang.org/x/tools v0.24.0 // indirect
131126
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
132-
google.golang.org/appengine v1.6.8 // indirect
133-
google.golang.org/protobuf v1.33.0 // indirect
127+
google.golang.org/protobuf v1.34.2 // indirect
128+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
134129
gopkg.in/inf.v0 v0.9.1 // indirect
135130
gopkg.in/yaml.v2 v2.4.0 // indirect
136131
gopkg.in/yaml.v3 v3.0.1 // indirect
137-
k8s.io/apiextensions-apiserver v0.30.1 // indirect
138-
k8s.io/cli-runtime v0.30.0 // indirect
132+
k8s.io/apiextensions-apiserver v0.31.0 // indirect
133+
k8s.io/cli-runtime v0.31.1 // indirect
139134
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
140-
k8s.io/kubectl v0.30.0 // indirect
135+
k8s.io/kubectl v0.31.1 // indirect
141136
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
142-
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect
143-
sigs.k8s.io/kustomize/kyaml v0.14.3-0.20230601165947-6ce0bf390ce3 // indirect
137+
sigs.k8s.io/kustomize/api v0.17.2 // indirect
138+
sigs.k8s.io/kustomize/kyaml v0.17.1 // indirect
144139
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
145140
)

0 commit comments

Comments
 (0)