Skip to content

Commit e0d5404

Browse files
committed
Update policy for kube version
We have historically decided to support AND TEST 3 versions of kubernetes. For that, we lagged behind in terms of client versions. Lagging behind one version allowed us, thanks to kubernetes client version skew, to support 3 versions at relatively low cost. However, maintaining 3 versions has always been a pain. For that, we pinned old versions of kubernetes clients/api and test tooling. In december 2025 community meeting, we decided to only maintain two versions: the most current one, and the previous one. This allows us to bump more regularly and be more secure. We can also more easily use dependabot this way. Signed-off-by: Jean-Philippe Evrard <open-source@a.spamming.party>
1 parent cd38a96 commit e0d5404

File tree

6 files changed

+75
-135
lines changed

6 files changed

+75
-135
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ updates:
1010
directory: "/"
1111
schedule:
1212
interval: "daily"
13-
ignore:
14-
- dependency-name: "k8s.io/api"
15-
- dependency-name: "k8s.io/apimachinery"
16-
- dependency-name: "k8s.io/client-go"
17-
- dependency-name: "k8s.io/kubectl"
1813
- package-ecosystem: "docker"
1914
directory: "/"
2015
schedule:

.github/kind-cluster-current.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ kind: Cluster
22
apiVersion: kind.x-k8s.io/v1alpha4
33
nodes:
44
- role: control-plane
5-
image: "kindest/node:v1.34.0"
5+
image: "kindest/node:v1.35.0"
66
- role: worker
7-
image: "kindest/node:v1.34.0"
7+
image: "kindest/node:v1.35.0"
88
- role: worker
9-
image: "kindest/node:v1.34.0"
9+
image: "kindest/node:v1.35.0"

.github/kind-cluster-next.yaml

Lines changed: 0 additions & 9 deletions
This file was deleted.

go.mod

Lines changed: 19 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kubereboot/kured
22

3-
go 1.24.11
3+
go 1.25.5
44

55
require (
66
github.com/containrrr/shoutrrr v0.8.0
@@ -10,10 +10,10 @@ require (
1010
github.com/sirupsen/logrus v1.9.3
1111
github.com/spf13/pflag v1.0.10
1212
github.com/stretchr/testify v1.11.1
13-
k8s.io/api v0.34.3
14-
k8s.io/apimachinery v0.34.3
15-
k8s.io/client-go v0.34.3
16-
k8s.io/kubectl v0.34.3
13+
k8s.io/api v0.35.0
14+
k8s.io/apimachinery v0.35.0
15+
k8s.io/client-go v0.35.0
16+
k8s.io/kubectl v0.35.0
1717
)
1818

1919
require (
@@ -29,15 +29,13 @@ require (
2929
github.com/fatih/color v1.15.0 // indirect
3030
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
3131
github.com/go-errors/errors v1.4.2 // indirect
32-
github.com/go-logr/logr v1.4.2 // indirect
32+
github.com/go-logr/logr v1.4.3 // indirect
3333
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3434
github.com/go-openapi/jsonreference v0.20.2 // indirect
3535
github.com/go-openapi/swag v0.23.0 // indirect
36-
github.com/gogo/protobuf v1.3.2 // indirect
3736
github.com/google/btree v1.1.3 // indirect
3837
github.com/google/gnostic-models v0.7.0 // indirect
3938
github.com/google/uuid v1.6.0 // indirect
40-
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
4139
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
4240
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4341
github.com/josharian/intern v1.0.0 // indirect
@@ -47,41 +45,38 @@ require (
4745
github.com/mattn/go-colorable v0.1.13 // indirect
4846
github.com/mattn/go-isatty v0.0.17 // indirect
4947
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
50-
github.com/moby/spdystream v0.5.0 // indirect
5148
github.com/moby/term v0.5.0 // indirect
5249
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5350
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
5451
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
5552
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
56-
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
5753
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
58-
github.com/pkg/errors v0.9.1 // indirect
5954
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
6055
github.com/prometheus/client_model v0.6.2 // indirect
6156
github.com/prometheus/procfs v0.16.1 // indirect
6257
github.com/russross/blackfriday/v2 v2.1.0 // indirect
63-
github.com/spf13/cobra v1.9.1 // indirect
58+
github.com/spf13/cobra v1.10.0 // indirect
6459
github.com/x448/float16 v0.8.4 // indirect
6560
github.com/xlab/treeprint v1.2.0 // indirect
66-
go.yaml.in/yaml/v2 v2.4.2 // indirect
61+
go.yaml.in/yaml/v2 v2.4.3 // indirect
6762
go.yaml.in/yaml/v3 v3.0.4 // indirect
68-
golang.org/x/net v0.43.0 // indirect
63+
golang.org/x/net v0.47.0 // indirect
6964
golang.org/x/oauth2 v0.30.0 // indirect
70-
golang.org/x/sync v0.16.0 // indirect
71-
golang.org/x/sys v0.35.0 // indirect
72-
golang.org/x/term v0.34.0 // indirect
73-
golang.org/x/text v0.28.0 // indirect
65+
golang.org/x/sync v0.18.0 // indirect
66+
golang.org/x/sys v0.38.0 // indirect
67+
golang.org/x/term v0.37.0 // indirect
68+
golang.org/x/text v0.31.0 // indirect
7469
golang.org/x/time v0.9.0 // indirect
7570
google.golang.org/protobuf v1.36.8 // indirect
76-
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
71+
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
7772
gopkg.in/inf.v0 v0.9.1 // indirect
7873
gopkg.in/yaml.v3 v3.0.1 // indirect
79-
k8s.io/cli-runtime v0.34.3 // indirect
80-
k8s.io/component-base v0.34.3 // indirect
74+
k8s.io/cli-runtime v0.35.0 // indirect
75+
k8s.io/component-base v0.35.0 // indirect
8176
k8s.io/klog/v2 v2.130.1 // indirect
82-
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
83-
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
84-
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
77+
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
78+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
79+
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
8580
sigs.k8s.io/kustomize/api v0.20.1 // indirect
8681
sigs.k8s.io/kustomize/kyaml v0.20.1 // indirect
8782
sigs.k8s.io/randfill v1.0.0 // indirect

0 commit comments

Comments
 (0)