Skip to content

Commit 0f9ead6

Browse files
committed
deps: Update Kubernetes Runtime
1 parent fc5af2e commit 0f9ead6

File tree

3 files changed

+77
-69
lines changed

3 files changed

+77
-69
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,10 +438,10 @@ CRD_REF_DOCS ?= $(LOCALBIN)/crd-ref-docs
438438
# Important note: avoid adding spaces in the macro declarations as any
439439
# additional whitespace will break the renovate regex rules.
440440

441-
KUBECTL_VERSION=v1.32.2# renovate datasource=github-tags depName=kubernetes/kubernetes
441+
KUBECTL_VERSION=v1.33.4# renovate datasource=github-tags depName=kubernetes/kubernetes
442442
TERRAFORM_VERSION=v1.12.2# renovate datasource=github-tags depName=hashicorp/terraform
443443

444-
CONTROLLER_TOOLS_VERSION=v0.17.3# renovate datasource=go depName=sigs.k8s.io/controller-tools
444+
CONTROLLER_TOOLS_VERSION=v0.18.0# renovate datasource=go depName=sigs.k8s.io/controller-tools
445445
CRD_REF_DOCS_VERSION=v0.1.0# renovate datasource=go depName=github.com/elastic/crd-ref-docs
446446
GOLANGCI_LINT_VERSION=v2.2.2# renovate datasource=go depName=github.com/golangci/golangci-lint/cmd/golangci-lint
447447
GO_LICENSES_VERSION=v1.6.0# renovate datasource=go depName=github.com/google/go-licenses

go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ go 1.24.0
55
require (
66
github.com/go-logr/logr v1.4.3
77
go.uber.org/zap v1.27.0
8-
k8s.io/api v0.32.1
9-
k8s.io/apimachinery v0.32.1
10-
k8s.io/client-go v0.32.1
11-
sigs.k8s.io/controller-runtime v0.20.4
8+
k8s.io/api v0.33.3
9+
k8s.io/apimachinery v0.33.3
10+
k8s.io/client-go v0.33.3
11+
sigs.k8s.io/controller-runtime v0.21.0
1212
sigs.k8s.io/yaml v1.5.0
1313
)
1414

1515
require (
1616
github.com/beorn7/perks v1.0.1 // indirect
17+
github.com/blang/semver/v4 v4.0.0 // indirect
1718
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1819
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
1920
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
@@ -25,11 +26,9 @@ require (
2526
github.com/go-openapi/jsonreference v0.20.2 // indirect
2627
github.com/go-openapi/swag v0.23.0 // indirect
2728
github.com/gogo/protobuf v1.3.2 // indirect
28-
github.com/golang/protobuf v1.5.4 // indirect
2929
github.com/google/btree v1.1.3 // indirect
30-
github.com/google/gnostic-models v0.6.8 // indirect
31-
github.com/google/go-cmp v0.6.0 // indirect
32-
github.com/google/gofuzz v1.2.0 // indirect
30+
github.com/google/gnostic-models v0.6.9 // indirect
31+
github.com/google/go-cmp v0.7.0 // indirect
3332
github.com/google/uuid v1.6.0 // indirect
3433
github.com/josharian/intern v1.0.0 // indirect
3534
github.com/json-iterator/go v1.1.12 // indirect
@@ -38,30 +37,31 @@ require (
3837
github.com/modern-go/reflect2 v1.0.2 // indirect
3938
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4039
github.com/pkg/errors v0.9.1 // indirect
41-
github.com/prometheus/client_golang v1.19.1 // indirect
40+
github.com/prometheus/client_golang v1.22.0 // indirect
4241
github.com/prometheus/client_model v0.6.1 // indirect
43-
github.com/prometheus/common v0.55.0 // indirect
42+
github.com/prometheus/common v0.62.0 // indirect
4443
github.com/prometheus/procfs v0.15.1 // indirect
4544
github.com/spf13/pflag v1.0.5 // indirect
4645
github.com/x448/float16 v0.8.4 // indirect
4746
go.uber.org/multierr v1.11.0 // indirect
4847
go.yaml.in/yaml/v2 v2.4.2 // indirect
49-
golang.org/x/net v0.30.0 // indirect
50-
golang.org/x/oauth2 v0.23.0 // indirect
51-
golang.org/x/sync v0.8.0 // indirect
52-
golang.org/x/sys v0.26.0 // indirect
53-
golang.org/x/term v0.25.0 // indirect
54-
golang.org/x/text v0.19.0 // indirect
55-
golang.org/x/time v0.7.0 // indirect
48+
golang.org/x/net v0.38.0 // indirect
49+
golang.org/x/oauth2 v0.27.0 // indirect
50+
golang.org/x/sync v0.12.0 // indirect
51+
golang.org/x/sys v0.31.0 // indirect
52+
golang.org/x/term v0.30.0 // indirect
53+
golang.org/x/text v0.23.0 // indirect
54+
golang.org/x/time v0.9.0 // indirect
5655
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
57-
google.golang.org/protobuf v1.35.1 // indirect
56+
google.golang.org/protobuf v1.36.5 // indirect
5857
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
5958
gopkg.in/inf.v0 v0.9.1 // indirect
6059
gopkg.in/yaml.v3 v3.0.1 // indirect
61-
k8s.io/apiextensions-apiserver v0.32.1 // indirect
60+
k8s.io/apiextensions-apiserver v0.33.0 // indirect
6261
k8s.io/klog/v2 v2.130.1 // indirect
63-
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
62+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
6463
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
6564
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
66-
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
65+
sigs.k8s.io/randfill v1.0.0 // indirect
66+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
6767
)

0 commit comments

Comments
 (0)