Skip to content

Commit 2685603

Browse files
authored
Merge pull request #2869 from ElijahQuinones/r156
Bump dependencies ahead of release
2 parents c971487 + 227e987 commit 2685603

File tree

21 files changed

+341
-279
lines changed

21 files changed

+341
-279
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM --platform=$BUILDPLATFORM public.ecr.aws/docker/library/golang:1.25@sha256:ce63a16e0f7063787ebb4eb28e72d477b00b4726f79874b3205a965ffd797ab2 AS builder
15+
FROM --platform=$BUILDPLATFORM public.ecr.aws/docker/library/golang:1.26@sha256:c83e68f3ebb6943a2904fa66348867d108119890a2c6a2e6f07b38d0eb6c25c5 AS builder
1616
WORKDIR /go/src/github.com/kubernetes-sigs/aws-ebs-csi-driver
1717
RUN go env -w GOCACHE=/gocache GOMODCACHE=/gomodcache
1818
COPY go.* .

charts/aws-ebs-csi-driver/templates/clusterrole-provisioner.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,14 @@ rules:
2626
- apiGroups: [""]
2727
resources: ["events"]
2828
verbs: ["list", "watch", "create", "update", "patch"]
29+
# The "watch" and "update" verbs for volumesnapshots are optional but recommended.
30+
# They enable finalizer-based protection to prevent snapshots from being deleted
31+
# during provisioning. Without these permissions, the provisioner will still function
32+
# but snapshot protection will be unavailable. This makes the provisioner backwards
33+
# compatible with older RBAC configurations.
2934
- apiGroups: ["snapshot.storage.k8s.io"]
3035
resources: ["volumesnapshots"]
31-
verbs: ["get", "list"]
36+
verbs: ["get", "list", "watch", "update"]
3237
- apiGroups: ["snapshot.storage.k8s.io"]
3338
resources: ["volumesnapshotcontents"]
3439
verbs: ["get", "list"]

charts/aws-ebs-csi-driver/values.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sidecars:
2222
image:
2323
pullPolicy: IfNotPresent
2424
repository: public.ecr.aws/csi-components/csi-provisioner
25-
tag: "v6.1.0-eksbuild.3"
25+
tag: "v6.1.1-eksbuild.1"
2626
logLevel: 2
2727
# Additional parameters provided by csi-provisioner.
2828
additionalArgs: []
@@ -49,7 +49,7 @@ sidecars:
4949
image:
5050
pullPolicy: IfNotPresent
5151
repository: public.ecr.aws/csi-components/csi-attacher
52-
tag: "v4.10.0-eksbuild.4"
52+
tag: "v4.11.0-eksbuild.1"
5353
# Tune leader lease election for csi-attacher.
5454
# Leader election is on by default.
5555
leaderElection:
@@ -78,7 +78,7 @@ sidecars:
7878
image:
7979
pullPolicy: IfNotPresent
8080
repository: public.ecr.aws/csi-components/csi-snapshotter
81-
tag: "v8.4.0-eksbuild.4"
81+
tag: "v8.5.0-eksbuild.1"
8282
logLevel: 2
8383
# Additional parameters provided by csi-snapshotter.
8484
additionalArgs: []
@@ -106,7 +106,7 @@ sidecars:
106106
image:
107107
pullPolicy: IfNotPresent
108108
repository: public.ecr.aws/csi-components/livenessprobe
109-
tag: "v2.17.0-eksbuild.4"
109+
tag: "v2.18.0-eksbuild.1"
110110
# Additional parameters provided by livenessprobe.
111111
additionalArgs: []
112112
resources: {}
@@ -118,7 +118,7 @@ sidecars:
118118
image:
119119
pullPolicy: IfNotPresent
120120
repository: public.ecr.aws/csi-components/csi-resizer
121-
tag: "v2.0.0-eksbuild.4"
121+
tag: "v2.1.0-eksbuild.1"
122122
# Tune leader lease election for csi-resizer.
123123
# Leader election is on by default.
124124
leaderElection:
@@ -145,7 +145,7 @@ sidecars:
145145
image:
146146
pullPolicy: IfNotPresent
147147
repository: public.ecr.aws/csi-components/csi-node-driver-registrar
148-
tag: "v2.15.0-eksbuild.4"
148+
tag: "v2.16.0-eksbuild.1"
149149
logLevel: 2
150150
# The port the health probe is bound to.
151151
healthPort: 9809
@@ -544,4 +544,4 @@ debugLogs: false
544544
helmTester:
545545
enabled: true
546546
# Supply a custom image to the ebs-csi-driver-test pod in helm-tester.yaml
547-
image: "us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20260120-e2c483ffe9-master"
547+
image: "us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20260217-29ba10ecec-master"

cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
timeout: 5400s
1616
steps:
17-
- name: gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20260108-7f313c340e
17+
- name: gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20260205-38cfa9523f
1818
entrypoint: ./hack/cloudbuild.sh
1919
env:
2020
- GIT_TAG=${_GIT_TAG}

deploy/kubernetes/base/clusterrole-provisioner.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,14 @@ rules:
2626
- apiGroups: [""]
2727
resources: ["events"]
2828
verbs: ["list", "watch", "create", "update", "patch"]
29+
# The "watch" and "update" verbs for volumesnapshots are optional but recommended.
30+
# They enable finalizer-based protection to prevent snapshots from being deleted
31+
# during provisioning. Without these permissions, the provisioner will still function
32+
# but snapshot protection will be unavailable. This makes the provisioner backwards
33+
# compatible with older RBAC configurations.
2934
- apiGroups: ["snapshot.storage.k8s.io"]
3035
resources: ["volumesnapshots"]
31-
verbs: ["get", "list"]
36+
verbs: ["get", "list", "watch", "update"]
3237
- apiGroups: ["snapshot.storage.k8s.io"]
3338
resources: ["volumesnapshotcontents"]
3439
verbs: ["get", "list"]

deploy/kubernetes/base/controller.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ spec:
140140
type: RuntimeDefault
141141
terminationMessagePolicy: FallbackToLogsOnError
142142
- name: csi-provisioner
143-
image: public.ecr.aws/csi-components/csi-provisioner:v6.1.0-eksbuild.3
143+
image: public.ecr.aws/csi-components/csi-provisioner:v6.1.1-eksbuild.1
144144
imagePullPolicy: IfNotPresent
145145
args:
146146
- --timeout=60s
@@ -175,7 +175,7 @@ spec:
175175
type: RuntimeDefault
176176
terminationMessagePolicy: FallbackToLogsOnError
177177
- name: csi-attacher
178-
image: public.ecr.aws/csi-components/csi-attacher:v4.10.0-eksbuild.4
178+
image: public.ecr.aws/csi-components/csi-attacher:v4.11.0-eksbuild.1
179179
imagePullPolicy: IfNotPresent
180180
args:
181181
- --timeout=6m
@@ -206,7 +206,7 @@ spec:
206206
type: RuntimeDefault
207207
terminationMessagePolicy: FallbackToLogsOnError
208208
- name: csi-snapshotter
209-
image: public.ecr.aws/csi-components/csi-snapshotter:v8.4.0-eksbuild.4
209+
image: public.ecr.aws/csi-components/csi-snapshotter:v8.5.0-eksbuild.1
210210
imagePullPolicy: IfNotPresent
211211
args:
212212
- --csi-address=$(ADDRESS)
@@ -236,7 +236,7 @@ spec:
236236
type: RuntimeDefault
237237
terminationMessagePolicy: FallbackToLogsOnError
238238
- name: csi-resizer
239-
image: public.ecr.aws/csi-components/csi-resizer:v2.0.0-eksbuild.4
239+
image: public.ecr.aws/csi-components/csi-resizer:v2.1.0-eksbuild.1
240240
imagePullPolicy: IfNotPresent
241241
args:
242242
- --timeout=60s
@@ -270,7 +270,7 @@ spec:
270270
type: RuntimeDefault
271271
terminationMessagePolicy: FallbackToLogsOnError
272272
- name: liveness-probe
273-
image: public.ecr.aws/csi-components/livenessprobe:v2.17.0-eksbuild.4
273+
image: public.ecr.aws/csi-components/livenessprobe:v2.18.0-eksbuild.1
274274
imagePullPolicy: IfNotPresent
275275
args:
276276
- --csi-address=/csi/csi.sock

deploy/kubernetes/base/node-windows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ spec:
102102
command: ["/bin/aws-ebs-csi-driver", "pre-stop-hook"]
103103
terminationMessagePolicy: FallbackToLogsOnError
104104
- name: node-driver-registrar
105-
image: public.ecr.aws/csi-components/csi-node-driver-registrar:v2.15.0-eksbuild.4
105+
image: public.ecr.aws/csi-components/csi-node-driver-registrar:v2.16.0-eksbuild.1
106106
imagePullPolicy: IfNotPresent
107107
args:
108108
- --csi-address=$(ADDRESS)
@@ -139,7 +139,7 @@ spec:
139139
memory: 40Mi
140140
terminationMessagePolicy: FallbackToLogsOnError
141141
- name: liveness-probe
142-
image: public.ecr.aws/csi-components/livenessprobe:v2.17.0-eksbuild.4
142+
image: public.ecr.aws/csi-components/livenessprobe:v2.18.0-eksbuild.1
143143
imagePullPolicy: IfNotPresent
144144
args:
145145
- --csi-address=unix:/csi/csi.sock

deploy/kubernetes/base/node.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ spec:
105105
command: ["/bin/aws-ebs-csi-driver", "pre-stop-hook"]
106106
terminationMessagePolicy: FallbackToLogsOnError
107107
- name: node-driver-registrar
108-
image: public.ecr.aws/csi-components/csi-node-driver-registrar:v2.15.0-eksbuild.4
108+
image: public.ecr.aws/csi-components/csi-node-driver-registrar:v2.16.0-eksbuild.1
109109
imagePullPolicy: IfNotPresent
110110
args:
111111
- --csi-address=$(ADDRESS)
@@ -145,7 +145,7 @@ spec:
145145
readOnlyRootFilesystem: true
146146
terminationMessagePolicy: FallbackToLogsOnError
147147
- name: liveness-probe
148-
image: public.ecr.aws/csi-components/livenessprobe:v2.17.0-eksbuild.4
148+
image: public.ecr.aws/csi-components/livenessprobe:v2.18.0-eksbuild.1
149149
imagePullPolicy: IfNotPresent
150150
args:
151151
- --csi-address=/csi/csi.sock

deploy/kubernetes/overlays/stable/gcr/kustomization.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ images:
77
newName: registry.k8s.io/provider-aws/aws-ebs-csi-driver
88
- name: public.ecr.aws/csi-components/external-provisioner
99
newName: registry.k8s.io/sig-storage/csi-provisioner
10-
newTag: v6.1.0
10+
newTag: v6.1.1
1111
- name: public.ecr.aws/csi-components/external-attacher
1212
newName: registry.k8s.io/sig-storage/csi-attacher
13-
newTag: v4.10.0
13+
newTag: v4.11.0
1414
- name: public.ecr.aws/csi-components/livenessprobe
1515
newName: registry.k8s.io/sig-storage/livenessprobe
16-
newTag: v2.17.0
16+
newTag: v2.18.0
1717
- name: public.ecr.aws/csi-components/csi-snapshotter
1818
newName: registry.k8s.io/sig-storage/csi-snapshotter
19-
newTag: v8.4.0
19+
newTag: v8.5.0
2020
- name: public.ecr.aws/csi-components/external-resizer
2121
newName: registry.k8s.io/sig-storage/csi-resizer
22-
newTag: v2.0.0
22+
newTag: v2.1.0
2323
- name: public.ecr.aws/csi-components/csi-node-driver-registrar
2424
newName: registry.k8s.io/sig-storage/csi-node-driver-registrar
25-
newTag: v2.15.0
25+
newTag: v2.16.0

go.mod

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2,54 +2,54 @@ module github.com/kubernetes-sigs/aws-ebs-csi-driver
22

33
require (
44
github.com/aws/aws-sdk-go-v2 v1.41.1
5-
github.com/aws/aws-sdk-go-v2/config v1.32.7
5+
github.com/aws/aws-sdk-go-v2/config v1.32.9
66
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.17
7-
github.com/aws/aws-sdk-go-v2/service/ec2 v1.281.0
8-
github.com/aws/aws-sdk-go-v2/service/sagemaker v1.230.1
7+
github.com/aws/aws-sdk-go-v2/service/ec2 v1.290.0
8+
github.com/aws/aws-sdk-go-v2/service/sagemaker v1.233.0
99
github.com/aws/aws-sdk-go-v2/service/sts v1.41.6
1010
github.com/aws/smithy-go v1.24.0
1111
github.com/awslabs/volume-modifier-for-k8s v0.9.1
1212
github.com/container-storage-interface/spec v1.12.0
1313
github.com/golang/mock v1.6.0
1414
github.com/google/go-cmp v0.7.0
15-
github.com/kubernetes-csi/csi-lib-utils v0.23.1
15+
github.com/kubernetes-csi/csi-lib-utils v0.23.2
1616
github.com/kubernetes-csi/csi-proxy/client v1.3.0
1717
github.com/kubernetes-csi/csi-proxy/v2 v2.0.0-alpha.2
1818
github.com/kubernetes-csi/csi-test/v5 v5.4.0
1919
github.com/prometheus/client_golang v1.23.2
2020
github.com/prometheus/common v0.67.5
2121
github.com/spf13/pflag v1.0.10
2222
github.com/stretchr/testify v1.11.1
23-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.64.0
24-
go.opentelemetry.io/otel v1.39.0
25-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0
26-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0
27-
go.opentelemetry.io/otel/sdk v1.39.0
28-
golang.org/x/sys v0.40.0
23+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.65.0
24+
go.opentelemetry.io/otel v1.40.0
25+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0
26+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.40.0
27+
go.opentelemetry.io/otel/sdk v1.40.0
28+
golang.org/x/sys v0.41.0
2929
golang.org/x/time v0.14.0
30-
google.golang.org/grpc v1.78.0
30+
google.golang.org/grpc v1.79.1
3131
google.golang.org/protobuf v1.36.11
32-
k8s.io/api v0.35.0
33-
k8s.io/apimachinery v0.35.0
34-
k8s.io/client-go v0.35.0
35-
k8s.io/component-base v0.35.0
32+
k8s.io/api v0.35.1
33+
k8s.io/apimachinery v0.35.1
34+
k8s.io/client-go v0.35.1
35+
k8s.io/component-base v0.35.1
3636
k8s.io/klog/v2 v2.130.1
37-
k8s.io/mount-utils v0.35.0
38-
k8s.io/utils v0.0.0-20260108192941-914a6e750570
37+
k8s.io/mount-utils v0.35.1
38+
k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2
3939
)
4040

4141
require (
4242
github.com/Masterminds/semver/v3 v3.4.0 // indirect
4343
github.com/Microsoft/go-winio v0.6.2 // indirect
44-
github.com/aws/aws-sdk-go-v2/credentials v1.19.7 // indirect
44+
github.com/aws/aws-sdk-go-v2/credentials v1.19.9 // indirect
4545
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.17 // indirect
4646
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.17 // indirect
4747
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 // indirect
4848
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4 // indirect
4949
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.17 // indirect
5050
github.com/aws/aws-sdk-go-v2/service/signin v1.0.5 // indirect
51-
github.com/aws/aws-sdk-go-v2/service/sso v1.30.9 // indirect
52-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.13 // indirect
51+
github.com/aws/aws-sdk-go-v2/service/sso v1.30.10 // indirect
52+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.14 // indirect
5353
github.com/beorn7/perks v1.0.1 // indirect
5454
github.com/blang/semver/v4 v4.0.0 // indirect
5555
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
@@ -78,7 +78,7 @@ require (
7878
github.com/google/gnostic-models v0.7.1 // indirect
7979
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
8080
github.com/google/uuid v1.6.0 // indirect
81-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.5 // indirect
81+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
8282
github.com/inconshreveable/mousetrap v1.1.0 // indirect
8383
github.com/json-iterator/go v1.1.12 // indirect
8484
github.com/kylelemons/godebug v1.1.0 // indirect
@@ -95,35 +95,35 @@ require (
9595
github.com/spf13/cobra v1.10.2 // indirect
9696
github.com/x448/float16 v0.8.4 // indirect
9797
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
98-
go.opentelemetry.io/otel/metric v1.39.0 // indirect
99-
go.opentelemetry.io/otel/trace v1.39.0 // indirect
98+
go.opentelemetry.io/otel/metric v1.40.0 // indirect
99+
go.opentelemetry.io/otel/trace v1.40.0 // indirect
100100
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
101101
go.uber.org/automaxprocs v1.6.0 // indirect
102102
go.uber.org/multierr v1.11.0 // indirect
103103
go.uber.org/zap v1.27.1 // indirect
104104
go.yaml.in/yaml/v2 v2.4.3 // indirect
105105
go.yaml.in/yaml/v3 v3.0.4 // indirect
106-
golang.org/x/mod v0.31.0 // indirect
107-
golang.org/x/net v0.49.0 // indirect
108-
golang.org/x/oauth2 v0.34.0 // indirect
106+
golang.org/x/mod v0.32.0 // indirect
107+
golang.org/x/net v0.50.0 // indirect
108+
golang.org/x/oauth2 v0.35.0 // indirect
109109
golang.org/x/sync v0.19.0 // indirect
110-
golang.org/x/term v0.39.0 // indirect
111-
golang.org/x/text v0.33.0 // indirect
112-
golang.org/x/tools v0.40.0 // indirect
113-
google.golang.org/genproto/googleapis/api v0.0.0-20260122232226-8e98ce8d340d // indirect
114-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260122232226-8e98ce8d340d // indirect
110+
golang.org/x/term v0.40.0 // indirect
111+
golang.org/x/text v0.34.0 // indirect
112+
golang.org/x/tools v0.41.0 // indirect
113+
google.golang.org/genproto/googleapis/api v0.0.0-20260217215200-42d3e9bedb6d // indirect
114+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260217215200-42d3e9bedb6d // indirect
115115
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
116116
gopkg.in/inf.v0 v0.9.1 // indirect
117117
gopkg.in/yaml.v2 v2.4.0 // indirect
118118
gopkg.in/yaml.v3 v3.0.1 // indirect
119-
k8s.io/kube-openapi v0.0.0-20251125145642-4e65d59e963e // indirect
119+
k8s.io/kube-openapi v0.0.0-20260127142750-a19766b6e2d4 // indirect
120120
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
121121
sigs.k8s.io/randfill v1.0.0 // indirect
122-
sigs.k8s.io/structured-merge-diff/v6 v6.3.1 // indirect
122+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2 // indirect
123123
sigs.k8s.io/yaml v1.6.0 // indirect
124124
)
125125

126126
// Workaround https://github.com/kubernetes-csi/csi-proxy/issues/411
127127
replace github.com/kubernetes-csi/csi-proxy/v2 => github.com/kubernetes-csi/csi-proxy/v2 v2.0.0-alpha.1
128128

129-
go 1.25.5
129+
go 1.26.0

0 commit comments

Comments
 (0)