Skip to content

Commit dbeb4fb

Browse files
committed
Support kubernetes 1.32
Also drop 1.29 support. Signed-off-by: Kyori Sakao <[email protected]>
1 parent 8c7cc73 commit dbeb4fb

File tree

8 files changed

+109
-113
lines changed

8 files changed

+109
-113
lines changed

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
kubernetes_versions: ["1.31", "1.30", "1.29"]
20+
kubernetes_versions: ["1.32", "1.31", "1.30"]
2121
env:
2222
KUBERNETES_VERSION: ${{ matrix.kubernetes_versions }}
2323
steps:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.22 as builder
2+
FROM golang:1.23 as builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

@@ -27,7 +27,7 @@ COPY types types
2727
# by leaving it empty we can ensure that the container and binary shipped on it will have the same platform.
2828
RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o pie ./cmd
2929

30-
FROM ubuntu:22.04
30+
FROM ubuntu:24.04
3131

3232
RUN apt-get update \
3333
&& apt-get install -y --no-install-recommends fio jq \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pie verifies that PVs are successfully provisioned on the specified nodes for th
1212

1313
## Supported environments
1414

15-
- Kubernetes: 1.31, 1.30, 1.29
15+
- Kubernetes: 1.32, 1.31, 1.30
1616

1717
## Getting Started
1818
### Running on the cluster

charts/pie/templates/pie.topolvm.io_pieprobes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: pieprobes.pie.topolvm.io
88
spec:
99
group: pie.topolvm.io

config/crd/bases/pie.topolvm.io_pieprobes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: pieprobes.pie.topolvm.io
88
spec:
99
group: pie.topolvm.io

go.mod

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
module github.com/topolvm/pie
22

3-
go 1.22.0
3+
go 1.23.0
4+
5+
toolchain go1.24.1
46

57
require (
6-
github.com/onsi/ginkgo/v2 v2.20.2
7-
github.com/onsi/gomega v1.35.1
8+
github.com/onsi/ginkgo/v2 v2.23.0
9+
github.com/onsi/gomega v1.36.2
810
github.com/prometheus/client_golang v1.19.1
911
github.com/prometheus/client_model v0.6.1
1012
github.com/prometheus/common v0.55.0
11-
github.com/spf13/cobra v1.8.1
12-
k8s.io/api v0.31.2
13-
k8s.io/apimachinery v0.31.2
14-
k8s.io/client-go v0.31.2
15-
k8s.io/component-helpers v0.31.2
13+
github.com/spf13/cobra v1.9.1
14+
k8s.io/api v0.32.3
15+
k8s.io/apimachinery v0.32.3
16+
k8s.io/client-go v0.32.3
17+
k8s.io/component-helpers v0.32.3
1618
k8s.io/klog/v2 v2.130.1
17-
sigs.k8s.io/controller-runtime v0.19.0
19+
sigs.k8s.io/controller-runtime v0.20.3
1820
sigs.k8s.io/yaml v1.4.0
1921
)
2022

@@ -23,24 +25,23 @@ require (
2325
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2426
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2527
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
26-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
28+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
2729
github.com/fsnotify/fsnotify v1.7.0 // indirect
2830
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2931
github.com/go-logr/logr v1.4.2 // indirect
3032
github.com/go-logr/zapr v1.3.0 // indirect
31-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
33+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3234
github.com/go-openapi/jsonreference v0.20.2 // indirect
33-
github.com/go-openapi/swag v0.22.4 // indirect
35+
github.com/go-openapi/swag v0.23.0 // indirect
3436
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3537
github.com/gogo/protobuf v1.3.2 // indirect
36-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3738
github.com/golang/protobuf v1.5.4 // indirect
39+
github.com/google/btree v1.1.3 // indirect
3840
github.com/google/gnostic-models v0.6.8 // indirect
3941
github.com/google/go-cmp v0.6.0 // indirect
4042
github.com/google/gofuzz v1.2.0 // indirect
41-
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
43+
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
4244
github.com/google/uuid v1.6.0 // indirect
43-
github.com/imdario/mergo v0.3.12 // indirect
4445
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4546
github.com/josharian/intern v1.0.0 // indirect
4647
github.com/json-iterator/go v1.1.12 // indirect
@@ -50,26 +51,26 @@ require (
5051
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5152
github.com/pkg/errors v0.9.1 // indirect
5253
github.com/prometheus/procfs v0.15.1 // indirect
53-
github.com/spf13/pflag v1.0.5 // indirect
54+
github.com/spf13/pflag v1.0.6 // indirect
5455
github.com/x448/float16 v0.8.4 // indirect
5556
go.uber.org/multierr v1.11.0 // indirect
56-
go.uber.org/zap v1.26.0 // indirect
57-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
58-
golang.org/x/net v0.33.0 // indirect
59-
golang.org/x/oauth2 v0.21.0 // indirect
60-
golang.org/x/sys v0.28.0 // indirect
61-
golang.org/x/term v0.27.0 // indirect
62-
golang.org/x/text v0.21.0 // indirect
63-
golang.org/x/time v0.3.0 // indirect
64-
golang.org/x/tools v0.24.0 // indirect
57+
go.uber.org/zap v1.27.0 // indirect
58+
golang.org/x/net v0.35.0 // indirect
59+
golang.org/x/oauth2 v0.23.0 // indirect
60+
golang.org/x/sync v0.11.0 // indirect
61+
golang.org/x/sys v0.30.0 // indirect
62+
golang.org/x/term v0.29.0 // indirect
63+
golang.org/x/text v0.22.0 // indirect
64+
golang.org/x/time v0.7.0 // indirect
65+
golang.org/x/tools v0.30.0 // indirect
6566
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
66-
google.golang.org/protobuf v1.35.1 // indirect
67+
google.golang.org/protobuf v1.36.1 // indirect
68+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
6769
gopkg.in/inf.v0 v0.9.1 // indirect
68-
gopkg.in/yaml.v2 v2.4.0 // indirect
6970
gopkg.in/yaml.v3 v3.0.1 // indirect
70-
k8s.io/apiextensions-apiserver v0.31.0 // indirect
71-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
72-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
73-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
74-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
71+
k8s.io/apiextensions-apiserver v0.32.1 // indirect
72+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
73+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
74+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
75+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
7576
)

0 commit comments

Comments
 (0)