Skip to content

Commit afabbe6

Browse files
authored
Merge pull request #357 from topolvm/support-k8s-1.34
Support kubernetes 1.34
2 parents 06718be + 7fa0550 commit afabbe6

File tree

7 files changed

+164
-127
lines changed

7 files changed

+164
-127
lines changed

.github/workflows/e2e.yaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@ jobs:
1616
runs-on: "ubuntu-22.04"
1717
strategy:
1818
matrix:
19-
kubernetes_versions: ["1.33.4", "1.32.8", "1.31.12"]
19+
kubernetes_versions: ["1.34.3", "1.33.7", "1.32.11"]
2020
env:
2121
KUBERNETES_VERSION: ${{ matrix.kubernetes_versions }}
2222
steps:
2323
- uses: actions/checkout@v6
2424
- uses: actions/setup-go@v6
2525
with:
26-
go-version-file: "go.mod"
26+
# TODO: revert to go-version-file: go.mod once setup-go resolves the 1.24.0 selection issue.
27+
go-version: "1.24.x"
28+
check-latest: true
2729
- run: make -C test/e2e setup
2830
- run: make -C test/e2e init-app-with-cert-manager
2931
- run: make -C test/e2e test
@@ -33,14 +35,16 @@ jobs:
3335
runs-on: "ubuntu-22.04"
3436
strategy:
3537
matrix:
36-
kubernetes_versions: ["1.33.4", "1.32.8", "1.31.12"]
38+
kubernetes_versions: ["1.34.3", "1.33.7", "1.32.11"]
3739
env:
3840
KUBERNETES_VERSION: ${{ matrix.kubernetes_versions }}
3941
steps:
4042
- uses: actions/checkout@v6
4143
- uses: actions/setup-go@v6
4244
with:
43-
go-version-file: "go.mod"
45+
# TODO: revert to go-version-file: go.mod once setup-go resolves the 1.24.0 selection issue.
46+
go-version: "1.24.x"
47+
check-latest: true
4448
- run: make -C test/e2e setup
4549
- run: make -C test/e2e init-app-without-cert-manager
4650
- run: make -C test/e2e test
@@ -50,14 +54,16 @@ jobs:
5054
runs-on: "ubuntu-22.04"
5155
strategy:
5256
matrix:
53-
kubernetes_versions: ["1.33.4", "1.32.8", "1.31.12"]
57+
kubernetes_versions: ["1.34.3", "1.33.7", "1.32.11"]
5458
env:
5559
KUBERNETES_VERSION: ${{ matrix.kubernetes_versions }}
5660
steps:
5761
- uses: actions/checkout@v6
5862
- uses: actions/setup-go@v6
5963
with:
60-
go-version-file: "go.mod"
64+
# TODO: revert to go-version-file: go.mod once setup-go resolves the 1.24.0 selection issue.
65+
go-version: "1.24.x"
66+
check-latest: true
6167
- run: make -C test/e2e setup
6268
- run: make -C test/e2e init-app-with-metrics-api
6369
- run: make -C test/e2e test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It queries the volume usage metrics from Prometheus that collects metrics from `
1111

1212
Our supported platforms are:
1313

14-
- Kubernetes: 1.33, 1.32, 1.31
14+
- Kubernetes: 1.34, 1.33, 1.32
1515
- CSI drivers that implements the following features
1616
- [Volume Expansion](https://kubernetes-csi.github.io/docs/volume-expansion.html)
1717
- [NodeGetVolumeStats](https://github.com/container-storage-interface/spec/blob/master/spec.md#nodegetvolumestats)

go.mod

Lines changed: 39 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,72 +3,75 @@ module github.com/topolvm/pvc-autoresizer
33
go 1.24.0
44

55
require (
6-
github.com/go-logr/logr v1.4.2
7-
github.com/onsi/ginkgo/v2 v2.22.0
8-
github.com/onsi/gomega v1.36.1
9-
github.com/prometheus/client_golang v1.22.0
10-
github.com/prometheus/client_model v0.6.1
11-
github.com/prometheus/common v0.62.0
12-
github.com/spf13/cobra v1.8.1
13-
golang.org/x/sync v0.12.0
14-
k8s.io/api v0.33.4
15-
k8s.io/apimachinery v0.33.4
16-
k8s.io/client-go v0.33.4
17-
sigs.k8s.io/controller-runtime v0.21.0
18-
sigs.k8s.io/yaml v1.4.0
6+
github.com/go-logr/logr v1.4.3
7+
github.com/onsi/ginkgo/v2 v2.27.2
8+
github.com/onsi/gomega v1.38.2
9+
github.com/prometheus/client_golang v1.23.2
10+
github.com/prometheus/client_model v0.6.2
11+
github.com/prometheus/common v0.66.1
12+
github.com/spf13/cobra v1.10.0
13+
golang.org/x/sync v0.18.0
14+
k8s.io/api v0.34.3
15+
k8s.io/apimachinery v0.34.3
16+
k8s.io/client-go v0.34.3
17+
sigs.k8s.io/controller-runtime v0.22.5
18+
sigs.k8s.io/yaml v1.6.0
1919
)
2020

2121
require (
22+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
2223
github.com/beorn7/perks v1.0.1 // indirect
23-
github.com/blang/semver/v4 v4.0.0 // indirect
2424
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2525
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
26-
github.com/emicklei/go-restful/v3 v3.11.1 // indirect
26+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
2727
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
28-
github.com/fsnotify/fsnotify v1.7.0 // indirect
29-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
28+
github.com/fsnotify/fsnotify v1.9.0 // indirect
29+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
3030
github.com/go-logr/zapr v1.3.0 // indirect
3131
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3232
github.com/go-openapi/jsonreference v0.20.4 // indirect
3333
github.com/go-openapi/swag v0.23.0 // indirect
3434
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3535
github.com/gogo/protobuf v1.3.2 // indirect
3636
github.com/google/btree v1.1.3 // indirect
37-
github.com/google/gnostic-models v0.6.9 // indirect
37+
github.com/google/gnostic-models v0.7.0 // indirect
3838
github.com/google/go-cmp v0.7.0 // indirect
39-
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect
39+
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
4040
github.com/google/uuid v1.6.0 // indirect
4141
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4242
github.com/josharian/intern v1.0.0 // indirect
4343
github.com/json-iterator/go v1.1.12 // indirect
4444
github.com/kylelemons/godebug v1.1.0 // indirect
4545
github.com/mailru/easyjson v0.7.7 // indirect
4646
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
47-
github.com/modern-go/reflect2 v1.0.2 // indirect
47+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
4848
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
49-
github.com/pkg/errors v0.9.1 // indirect
50-
github.com/prometheus/procfs v0.15.1 // indirect
51-
github.com/spf13/pflag v1.0.5 // indirect
49+
github.com/pmezard/go-difflib v1.0.0 // indirect
50+
github.com/prometheus/procfs v0.16.1 // indirect
51+
github.com/spf13/pflag v1.0.9 // indirect
5252
github.com/x448/float16 v0.8.4 // indirect
5353
go.uber.org/multierr v1.11.0 // indirect
5454
go.uber.org/zap v1.27.0 // indirect
55-
golang.org/x/net v0.38.0 // indirect
56-
golang.org/x/oauth2 v0.27.0 // indirect
57-
golang.org/x/sys v0.31.0 // indirect
58-
golang.org/x/term v0.30.0 // indirect
59-
golang.org/x/text v0.23.0 // indirect
55+
go.yaml.in/yaml/v2 v2.4.3 // indirect
56+
go.yaml.in/yaml/v3 v3.0.4 // indirect
57+
golang.org/x/mod v0.29.0 // indirect
58+
golang.org/x/net v0.47.0 // indirect
59+
golang.org/x/oauth2 v0.30.0 // indirect
60+
golang.org/x/sys v0.38.0 // indirect
61+
golang.org/x/term v0.37.0 // indirect
62+
golang.org/x/text v0.31.0 // indirect
6063
golang.org/x/time v0.9.0 // indirect
61-
golang.org/x/tools v0.26.0 // indirect
64+
golang.org/x/tools v0.38.0 // indirect
6265
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
63-
google.golang.org/protobuf v1.36.5 // indirect
64-
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
66+
google.golang.org/protobuf v1.36.8 // indirect
67+
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
6568
gopkg.in/inf.v0 v0.9.1 // indirect
6669
gopkg.in/yaml.v3 v3.0.1 // indirect
67-
k8s.io/apiextensions-apiserver v0.33.0 // indirect
70+
k8s.io/apiextensions-apiserver v0.34.3 // indirect
6871
k8s.io/klog/v2 v2.130.1 // indirect
69-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
70-
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
71-
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
72+
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
73+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
74+
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
7275
sigs.k8s.io/randfill v1.0.0 // indirect
73-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
76+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
7477
)

0 commit comments

Comments
 (0)