Skip to content

Commit 381f251

Browse files
committed
feat: update for Kubernetes 1.32
Add new checks based on 1.32.0-alpha.2. Signed-off-by: Andrey Smirnov <[email protected]>
1 parent 0e767c5 commit 381f251

File tree

6 files changed

+112
-143
lines changed

6 files changed

+112
-143
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# syntax = docker/dockerfile-upstream:1.9.0-labs
1+
# syntax = docker/dockerfile-upstream:1.10.0-labs
22

33
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
44
#
5-
# Generated on 2024-09-06T04:07:28Z by kres 8be5fa7.
5+
# Generated on 2024-10-16T10:10:47Z by kres 34e72ac.
66

77
ARG TOOLCHAIN
88

99
# cleaned up specs and compiled versions
1010
FROM scratch AS generate
1111

1212
# runs markdownlint
13-
FROM docker.io/oven/bun:1.1.26-alpine AS lint-markdown
13+
FROM docker.io/oven/bun:1.1.29-alpine AS lint-markdown
1414
WORKDIR /src
1515
1616
COPY .markdownlint.json .

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-09-06T04:07:28Z by kres 8be5fa7.
3+
# Generated on 2024-10-16T10:10:47Z by kres 34e72ac.
44

55
# common variables
66

@@ -21,11 +21,11 @@ PROTOBUF_GO_VERSION ?= 1.34.2
2121
GRPC_GO_VERSION ?= 1.5.1
2222
GRPC_GATEWAY_VERSION ?= 2.22.0
2323
VTPROTOBUF_VERSION ?= 0.6.0
24-
GOIMPORTS_VERSION ?= 0.24.0
24+
GOIMPORTS_VERSION ?= 0.25.0
2525
DEEPCOPY_VERSION ?= v0.5.6
26-
GOLANGCILINT_VERSION ?= v1.60.3
26+
GOLANGCILINT_VERSION ?= v1.61.0
2727
GOFUMPT_VERSION ?= v0.7.0
28-
GO_VERSION ?= 1.23.0
28+
GO_VERSION ?= 1.23.2
2929
GO_BUILDFLAGS ?=
3030
GO_LDFLAGS ?=
3131
CGO_ENABLED ?= 0

go.mod

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/siderolabs/go-kubernetes
22

3-
go 1.22.7
3+
go 1.23.2
44

55
require (
66
github.com/blang/semver/v4 v4.0.0
@@ -9,23 +9,23 @@ require (
99
github.com/hexops/gotextdiff v1.0.3
1010
github.com/siderolabs/gen v0.5.0
1111
github.com/siderolabs/go-retry v0.3.3
12-
github.com/siderolabs/talos/pkg/machinery v1.7.6
12+
github.com/siderolabs/talos/pkg/machinery v1.8.1
1313
github.com/stretchr/testify v1.9.0
14-
golang.org/x/sys v0.25.0
15-
k8s.io/api v0.31.0
16-
k8s.io/apimachinery v0.31.0
17-
k8s.io/client-go v0.31.0
14+
golang.org/x/sys v0.26.0
15+
k8s.io/api v0.31.1
16+
k8s.io/apimachinery v0.31.1
17+
k8s.io/client-go v0.31.1
1818
sigs.k8s.io/yaml v1.4.0
1919
)
2020

2121
require (
22-
github.com/ProtonMail/go-crypto v1.0.0 // indirect
22+
github.com/ProtonMail/go-crypto v1.1.0-alpha.5.0.20240827111422-b5837fa4476e // indirect
2323
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
2424
github.com/ProtonMail/gopenpgp/v2 v2.7.5 // indirect
25-
github.com/adrg/xdg v0.4.0 // indirect
26-
github.com/cloudflare/circl v1.3.7 // indirect
27-
github.com/containerd/go-cni v1.1.9 // indirect
28-
github.com/containernetworking/cni v1.1.2 // indirect
25+
github.com/adrg/xdg v0.5.0 // indirect
26+
github.com/cloudflare/circl v1.3.9 // indirect
27+
github.com/containerd/go-cni v1.1.10 // indirect
28+
github.com/containernetworking/cni v1.2.3 // indirect
2929
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3030
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
3131
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
@@ -40,7 +40,7 @@ require (
4040
github.com/google/go-cmp v0.6.0 // indirect
4141
github.com/google/gofuzz v1.2.0 // indirect
4242
github.com/google/uuid v1.6.0 // indirect
43-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
43+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
4444
github.com/hashicorp/errwrap v1.1.0 // indirect
4545
github.com/hashicorp/go-multierror v1.1.1 // indirect
4646
github.com/josharian/intern v1.0.0 // indirect
@@ -53,24 +53,24 @@ require (
5353
github.com/opencontainers/runtime-spec v1.2.0 // indirect
5454
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
5555
github.com/pkg/errors v0.9.1 // indirect
56-
github.com/planetscale/vtprotobuf v0.6.0 // indirect
56+
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
5757
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
5858
github.com/siderolabs/crypto v0.4.4 // indirect
59-
github.com/siderolabs/go-api-signature v0.3.2 // indirect
59+
github.com/siderolabs/go-api-signature v0.3.6 // indirect
6060
github.com/siderolabs/go-pointer v1.0.0 // indirect
6161
github.com/siderolabs/protoenc v0.2.1 // indirect
6262
github.com/x448/float16 v0.8.4 // indirect
6363
go.uber.org/multierr v1.11.0 // indirect
6464
go.uber.org/zap v1.27.0 // indirect
65-
golang.org/x/crypto v0.24.0 // indirect
66-
golang.org/x/net v0.26.0 // indirect
67-
golang.org/x/oauth2 v0.21.0 // indirect
68-
golang.org/x/term v0.21.0 // indirect
69-
golang.org/x/text v0.16.0 // indirect
70-
golang.org/x/time v0.5.0 // indirect
71-
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
72-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
73-
google.golang.org/grpc v1.65.0 // indirect
65+
golang.org/x/crypto v0.26.0 // indirect
66+
golang.org/x/net v0.28.0 // indirect
67+
golang.org/x/oauth2 v0.22.0 // indirect
68+
golang.org/x/term v0.23.0 // indirect
69+
golang.org/x/text v0.17.0 // indirect
70+
golang.org/x/time v0.6.0 // indirect
71+
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
72+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
73+
google.golang.org/grpc v1.66.3 // indirect
7474
google.golang.org/protobuf v1.34.2 // indirect
7575
gopkg.in/inf.v0 v0.9.1 // indirect
7676
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)