Skip to content

Commit f8280ec

Browse files
authored
Merge pull request #175 from digitalocean/parora/CON-12035
CON-12035: Update Clusterlink for DOKS 1.33
2 parents b31fd6d + 9c3eade commit f8280ec

File tree

636 files changed

+53427
-16420
lines changed

Some content is hidden

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

636 files changed

+53427
-16420
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ version: 2
22
jobs:
33
license:
44
docker:
5-
- image: golang:1.23
5+
- image: golang:1.24
66
steps:
77
- checkout
88
- run: ./script/check-licenses.sh
99
vet:
1010
docker:
11-
- image: golang:1.23
11+
- image: golang:1.24
1212
steps:
1313
- checkout
1414
- run: go vet ./...
1515
test:
1616
docker:
17-
- image: golang:1.23
17+
- image: golang:1.24
1818
steps:
1919
- checkout
2020
- run: go test -race -cover ./...
2121
smoke-test:
2222
docker:
23-
- image: golang:1.23
23+
- image: golang:1.24
2424
steps:
2525
- checkout
2626
- run: go run ./cmd/clusterlint --help

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install go
1818
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a #v5.2.0
1919
with:
20-
go-version: ^1.23
20+
go-version: ^1.24
2121
- name: Check out code into the Go module directory
2222
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
2323
- name: Login to dockerhub to push the image

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the clusterlint binary
2-
FROM golang:1.23 as builder
2+
FROM golang:1.24 as builder
33
WORKDIR /workspace
44
# Copy the Go Modules manifests
55
COPY go.mod go.mod

go.mod

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,32 @@
11
module github.com/digitalocean/clusterlint
22

3-
go 1.23.1
3+
go 1.24.1
44

55
require (
66
github.com/docker/distribution v2.8.3+incompatible
77
github.com/fatih/color v1.18.0
88
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0
9-
github.com/stretchr/testify v1.9.0
9+
github.com/stretchr/testify v1.10.0
1010
github.com/urfave/cli v1.22.16
11-
golang.org/x/sync v0.10.0
12-
k8s.io/api v0.32.1
13-
k8s.io/apimachinery v0.32.1
14-
k8s.io/client-go v0.32.1
11+
golang.org/x/sync v0.14.0
12+
k8s.io/api v0.33.1
13+
k8s.io/apimachinery v0.33.1
14+
k8s.io/client-go v0.33.1
1515
)
1616

1717
require (
18-
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
18+
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
1919
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2020
github.com/distribution/reference v0.6.0 // indirect
21-
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
22-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
21+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
22+
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
2323
github.com/go-logr/logr v1.4.2 // indirect
24-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
24+
github.com/go-openapi/jsonpointer v0.21.1 // indirect
2525
github.com/go-openapi/jsonreference v0.21.0 // indirect
26-
github.com/go-openapi/swag v0.23.0 // indirect
26+
github.com/go-openapi/swag v0.23.1 // indirect
2727
github.com/gogo/protobuf v1.3.2 // indirect
28-
github.com/golang/protobuf v1.5.4 // indirect
2928
github.com/google/gnostic-models v0.6.9 // indirect
30-
github.com/google/go-cmp v0.6.0 // indirect
31-
github.com/google/gofuzz v1.2.0 // indirect
29+
github.com/google/go-cmp v0.7.0 // indirect
3230
github.com/google/uuid v1.6.0 // indirect
3331
github.com/josharian/intern v1.0.0 // indirect
3432
github.com/json-iterator/go v1.1.12 // indirect
@@ -42,23 +40,24 @@ require (
4240
github.com/pkg/errors v0.9.1 // indirect
4341
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
4442
github.com/russross/blackfriday/v2 v2.1.0 // indirect
45-
github.com/spf13/pflag v1.0.5 // indirect
43+
github.com/spf13/pflag v1.0.6 // indirect
4644
github.com/x448/float16 v0.8.4 // indirect
47-
golang.org/x/net v0.34.0 // indirect
48-
golang.org/x/oauth2 v0.25.0 // indirect
49-
golang.org/x/sys v0.29.0 // indirect
50-
golang.org/x/term v0.28.0 // indirect
51-
golang.org/x/text v0.21.0 // indirect
52-
golang.org/x/time v0.9.0 // indirect
53-
google.golang.org/protobuf v1.36.3 // indirect
45+
golang.org/x/net v0.40.0 // indirect
46+
golang.org/x/oauth2 v0.30.0 // indirect
47+
golang.org/x/sys v0.33.0 // indirect
48+
golang.org/x/term v0.32.0 // indirect
49+
golang.org/x/text v0.25.0 // indirect
50+
golang.org/x/time v0.11.0 // indirect
51+
google.golang.org/protobuf v1.36.6 // indirect
5452
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
5553
gopkg.in/inf.v0 v0.9.1 // indirect
5654
gopkg.in/yaml.v3 v3.0.1 // indirect
5755
k8s.io/klog/v2 v2.130.1 // indirect
58-
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
59-
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
56+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
57+
k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 // indirect
6058
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
61-
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
59+
sigs.k8s.io/randfill v1.0.0 // indirect
60+
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
6261
sigs.k8s.io/yaml v1.4.0 // indirect
6362
)
6463

0 commit comments

Comments
 (0)