Skip to content

Commit fc84321

Browse files
authored
Merge pull request #206 from leaseweb/k8s_1_32_7
feat: K8s 1.33 support
2 parents 87b58f8 + d82cdc1 commit fc84321

File tree

4 files changed

+80
-87
lines changed

4 files changed

+80
-87
lines changed

deploy/k8s/controller-deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ spec:
100100
allowPrivilegeEscalation: false
101101

102102
- name: external-provisioner
103-
image: registry.k8s.io/sig-storage/csi-provisioner:v5.0.2
103+
image: registry.k8s.io/sig-storage/csi-provisioner:v5.2.0
104104
imagePullPolicy: IfNotPresent
105105
args:
106106
- "--v=4"
@@ -128,7 +128,7 @@ spec:
128128
allowPrivilegeEscalation: false
129129

130130
- name: external-attacher
131-
image: registry.k8s.io/sig-storage/csi-attacher:v4.6.1
131+
image: registry.k8s.io/sig-storage/csi-attacher:v4.8.1
132132
imagePullPolicy: IfNotPresent
133133
args:
134134
- "--v=4"
@@ -153,7 +153,7 @@ spec:
153153
allowPrivilegeEscalation: false
154154

155155
- name: external-resizer
156-
image: registry.k8s.io/sig-storage/csi-resizer:v1.11.2
156+
image: registry.k8s.io/sig-storage/csi-resizer:v1.13.2
157157
args:
158158
- "--v=5"
159159
- "--csi-address=$(ADDRESS)"
@@ -178,7 +178,7 @@ spec:
178178
allowPrivilegeEscalation: false
179179

180180
- name: liveness-probe
181-
image: registry.k8s.io/sig-storage/livenessprobe:v2.13.1
181+
image: registry.k8s.io/sig-storage/livenessprobe:v2.15.0
182182
args:
183183
- "--v=4"
184184
- "--csi-address=$(ADDRESS)"

deploy/k8s/node-daemonset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ spec:
9393
privileged: true
9494

9595
- name: node-driver-registrar
96-
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.11.1
96+
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.13.0
9797
imagePullPolicy: IfNotPresent
9898
args:
9999
- "--csi-address=$(ADDRESS)"
@@ -134,7 +134,7 @@ spec:
134134
allowPrivilegeEscalation: false
135135

136136
- name: liveness-probe
137-
image: registry.k8s.io/sig-storage/livenessprobe:v2.13.1
137+
image: registry.k8s.io/sig-storage/livenessprobe:v2.15.0
138138
imagePullPolicy: IfNotPresent
139139
args:
140140
- "--v=4"

go.mod

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -17,73 +17,72 @@ require (
1717
golang.org/x/text v0.27.0
1818
google.golang.org/grpc v1.65.0
1919
gopkg.in/gcfg.v1 v1.2.3
20-
k8s.io/api v0.31.11
21-
k8s.io/apimachinery v0.31.11
22-
k8s.io/client-go v0.31.11
23-
k8s.io/component-base v0.31.11
20+
k8s.io/api v0.32.7
21+
k8s.io/apimachinery v0.32.7
22+
k8s.io/client-go v0.32.7
23+
k8s.io/component-base v0.32.7
2424
k8s.io/klog/v2 v2.130.1
25-
k8s.io/mount-utils v0.31.11
26-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
25+
k8s.io/mount-utils v0.32.7
26+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
2727
)
2828

2929
require (
3030
github.com/beorn7/perks v1.0.1 // indirect
3131
github.com/blang/semver/v4 v4.0.0 // indirect
3232
github.com/cespare/xxhash/v2 v2.3.0 // indirect
33-
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
3433
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3534
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
3635
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
3736
github.com/go-logr/logr v1.4.2 // indirect
3837
github.com/go-logr/zapr v1.3.0 // indirect
39-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
38+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
4039
github.com/go-openapi/jsonreference v0.20.2 // indirect
41-
github.com/go-openapi/swag v0.22.4 // indirect
40+
github.com/go-openapi/swag v0.23.0 // indirect
4241
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
43-
github.com/godbus/dbus/v5 v5.1.0 // indirect
4442
github.com/gogo/protobuf v1.3.2 // indirect
4543
github.com/golang/protobuf v1.5.4 // indirect
4644
github.com/google/gnostic-models v0.6.8 // indirect
4745
github.com/google/go-cmp v0.6.0 // indirect
4846
github.com/google/gofuzz v1.2.0 // indirect
49-
github.com/google/pprof v0.0.0-20240525223248-4bfdf5a9a2af // indirect
47+
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect
5048
github.com/google/uuid v1.6.0 // indirect
51-
github.com/imdario/mergo v0.3.6 // indirect
5249
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5350
github.com/josharian/intern v1.0.0 // indirect
5451
github.com/json-iterator/go v1.1.12 // indirect
5552
github.com/mailru/easyjson v0.7.7 // indirect
56-
github.com/moby/sys/mountinfo v0.7.1 // indirect
53+
github.com/moby/sys/mountinfo v0.7.2 // indirect
54+
github.com/moby/sys/userns v0.1.0 // indirect
5755
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5856
github.com/modern-go/reflect2 v1.0.2 // indirect
5957
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
60-
github.com/onsi/ginkgo/v2 v2.19.0 // indirect
61-
github.com/onsi/gomega v1.33.1 // indirect
62-
github.com/opencontainers/runc v1.1.13 // indirect
63-
github.com/opencontainers/runtime-spec v1.0.3-0.20220909204839-494a5a6aca78 // indirect
58+
github.com/onsi/ginkgo/v2 v2.21.0 // indirect
59+
github.com/onsi/gomega v1.35.1 // indirect
60+
github.com/pkg/errors v0.9.1 // indirect
6461
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
6562
github.com/prometheus/client_golang v1.19.1 // indirect
6663
github.com/prometheus/client_model v0.6.1 // indirect
6764
github.com/prometheus/common v0.55.0 // indirect
6865
github.com/prometheus/procfs v0.15.1 // indirect
69-
github.com/sirupsen/logrus v1.9.3 // indirect
7066
github.com/spf13/cobra v1.8.1 // indirect
7167
github.com/x448/float16 v0.8.4 // indirect
68+
go.opentelemetry.io/otel v1.28.0 // indirect
69+
go.opentelemetry.io/otel/trace v1.28.0 // indirect
7270
go.uber.org/multierr v1.11.0 // indirect
7371
go.uber.org/zap v1.27.0 // indirect
7472
golang.org/x/net v0.41.0 // indirect
75-
golang.org/x/oauth2 v0.21.0 // indirect
73+
golang.org/x/oauth2 v0.23.0 // indirect
7674
golang.org/x/term v0.32.0 // indirect
77-
golang.org/x/time v0.5.0 // indirect
75+
golang.org/x/time v0.7.0 // indirect
7876
golang.org/x/tools v0.34.0 // indirect
79-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
80-
google.golang.org/protobuf v1.34.2 // indirect
77+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240826202546-f6391c0de4c7 // indirect
78+
google.golang.org/protobuf v1.35.1 // indirect
79+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
8180
gopkg.in/inf.v0 v0.9.1 // indirect
8281
gopkg.in/warnings.v0 v0.1.2 // indirect
8382
gopkg.in/yaml.v2 v2.4.0 // indirect
8483
gopkg.in/yaml.v3 v3.0.1 // indirect
85-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
86-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
87-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
84+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
85+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
86+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
8887
sigs.k8s.io/yaml v1.4.0 // indirect
8988
)

0 commit comments

Comments
 (0)