Skip to content

Commit cfffbca

Browse files
authored
Merge pull request #374 from jacobwolfaws/master
Bump dependencies for v1.2.0
2 parents 198a336 + a6240cc commit cfffbca

File tree

7 files changed

+142
-157
lines changed

7 files changed

+142
-157
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ sidecars:
1414
livenessProbe:
1515
image:
1616
repository: public.ecr.aws/eks-distro/kubernetes-csi/livenessprobe
17-
tag: v2.11.0-eks-1-28-7
17+
tag: v2.12.0-eks-1-29-5
1818
pullPolicy: IfNotPresent
1919
resources: {}
2020
nodeDriverRegistrar:
2121
image:
2222
repository: public.ecr.aws/eks-distro/kubernetes-csi/node-driver-registrar
23-
tag: v2.9.0-eks-1-28-7
23+
tag: v2.10.0-eks-1-29-5
2424
pullPolicy: IfNotPresent
2525
logLevel: 2
2626
resources: {}
2727
provisioner:
2828
image:
2929
repository: public.ecr.aws/eks-distro/kubernetes-csi/external-provisioner
30-
tag: v3.6.0-eks-1-28-7
30+
tag: v4.0.0-eks-1-29-5
3131
pullPolicy: IfNotPresent
3232
logLevel: 2
3333
resources: {}
3434
resizer:
3535
image:
3636
repository: public.ecr.aws/eks-distro/kubernetes-csi/external-resizer
37-
tag: v1.9.0-eks-1-28-7
37+
tag: v1.10.0-eks-1-29-5
3838
pullPolicy: IfNotPresent
3939
logLevel: 2
4040
resources: {}

deploy/kubernetes/base/controller-deployment.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ spec:
7272
periodSeconds: 2
7373
failureThreshold: 5
7474
- name: csi-provisioner
75-
image: public.ecr.aws/eks-distro/kubernetes-csi/external-provisioner:v3.6.0-eks-1-28-7
75+
image: public.ecr.aws/eks-distro/kubernetes-csi/external-provisioner:v4.0.0-eks-1-29-5
7676
args:
7777
- --csi-address=$(ADDRESS)
7878
- --v=2
@@ -86,7 +86,7 @@ spec:
8686
- name: socket-dir
8787
mountPath: /var/lib/csi/sockets/pluginproxy/
8888
- name: csi-resizer
89-
image: public.ecr.aws/eks-distro/kubernetes-csi/external-resizer:v1.9.0-eks-1-28-7
89+
image: public.ecr.aws/eks-distro/kubernetes-csi/external-resizer:v1.10.0-eks-1-29-5
9090
args:
9191
- --csi-address=$(ADDRESS)
9292
- --v=2
@@ -99,7 +99,7 @@ spec:
9999
- name: socket-dir
100100
mountPath: /var/lib/csi/sockets/pluginproxy/
101101
- name: liveness-probe
102-
image: public.ecr.aws/eks-distro/kubernetes-csi/livenessprobe:v2.11.0-eks-1-28-7
102+
image: public.ecr.aws/eks-distro/kubernetes-csi/livenessprobe:v2.12.0-eks-1-29-5
103103
args:
104104
- --csi-address=/csi/csi.sock
105105
- --health-port=9910

deploy/kubernetes/base/node-daemonset.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ spec:
6161
periodSeconds: 2
6262
failureThreshold: 5
6363
- name: node-driver-registrar
64-
image: public.ecr.aws/eks-distro/kubernetes-csi/node-driver-registrar:v2.9.0-eks-1-28-7
64+
image: public.ecr.aws/eks-distro/kubernetes-csi/node-driver-registrar:v2.10.0-eks-1-29-5
6565
imagePullPolicy: IfNotPresent
6666
args:
6767
- --csi-address=$(ADDRESS)
@@ -82,7 +82,7 @@ spec:
8282
- name: registration-dir
8383
mountPath: /registration
8484
- name: liveness-probe
85-
image: public.ecr.aws/eks-distro/kubernetes-csi/livenessprobe:v2.11.0-eks-1-28-7
85+
image: public.ecr.aws/eks-distro/kubernetes-csi/livenessprobe:v2.12.0-eks-1-29-5
8686
imagePullPolicy: IfNotPresent
8787
args:
8888
- --csi-address=/csi/csi.sock

go.mod

+27-28
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
module sigs.k8s.io/aws-fsx-csi-driver
22

33
require (
4-
github.com/aws/aws-sdk-go v1.47.4
4+
github.com/aws/aws-sdk-go v1.50.21
55
github.com/container-storage-interface/spec v1.9.0
66
github.com/golang/mock v1.6.0
77
github.com/kubernetes-csi/csi-test v2.0.1+incompatible
88
github.com/onsi/ginkgo v1.16.5
9-
github.com/onsi/gomega v1.27.6
9+
github.com/onsi/gomega v1.29.0
1010
github.com/spf13/pflag v1.0.5
1111
github.com/stretchr/testify v1.8.4
12-
google.golang.org/grpc v1.59.0
13-
k8s.io/api v0.28.3
14-
k8s.io/apimachinery v0.28.3
15-
k8s.io/client-go v0.28.3
16-
k8s.io/component-base v0.28.3
17-
k8s.io/klog/v2 v2.110.1
18-
k8s.io/mount-utils v0.28.3
12+
google.golang.org/grpc v1.61.1
13+
k8s.io/api v0.29.2
14+
k8s.io/apimachinery v0.29.2
15+
k8s.io/client-go v0.29.2
16+
k8s.io/component-base v0.29.2
17+
k8s.io/klog/v2 v2.120.1
18+
k8s.io/mount-utils v0.29.2
1919

2020
)
2121

@@ -24,55 +24,54 @@ require (
2424
github.com/blang/semver/v4 v4.0.0 // indirect
2525
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2626
github.com/davecgh/go-spew v1.1.1 // indirect
27-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
27+
github.com/emicklei/go-restful/v3 v3.11.2 // indirect
2828
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
2929
github.com/fsnotify/fsnotify v1.4.9 // indirect
30-
github.com/go-logr/logr v1.3.0 // indirect
30+
github.com/go-logr/logr v1.4.1 // indirect
3131
github.com/go-logr/zapr v1.3.0 // indirect
32-
github.com/go-openapi/jsonpointer v0.20.0 // indirect
33-
github.com/go-openapi/jsonreference v0.20.2 // indirect
34-
github.com/go-openapi/swag v0.22.4 // indirect
32+
github.com/go-openapi/jsonpointer v0.20.2 // indirect
33+
github.com/go-openapi/jsonreference v0.20.4 // indirect
34+
github.com/go-openapi/swag v0.22.9 // indirect
3535
github.com/gogo/protobuf v1.3.2 // indirect
3636
github.com/golang/protobuf v1.5.3 // indirect
3737
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
3838
github.com/google/go-cmp v0.6.0 // indirect
3939
github.com/google/gofuzz v1.2.0 // indirect
40-
github.com/google/uuid v1.4.0 // indirect
40+
github.com/google/uuid v1.6.0 // indirect
4141
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4242
github.com/jmespath/go-jmespath v0.4.0 // indirect
4343
github.com/josharian/intern v1.0.0 // indirect
4444
github.com/json-iterator/go v1.1.12 // indirect
4545
github.com/mailru/easyjson v0.7.7 // indirect
46-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
4746
github.com/moby/sys/mountinfo v0.7.1 // indirect
4847
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4948
github.com/modern-go/reflect2 v1.0.2 // indirect
5049
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5150
github.com/nxadm/tail v1.4.8 // indirect
5251
github.com/pkg/errors v0.9.1 // indirect
5352
github.com/pmezard/go-difflib v1.0.0 // indirect
54-
github.com/prometheus/client_golang v1.17.0 // indirect
55-
github.com/prometheus/client_model v0.5.0 // indirect
56-
github.com/prometheus/common v0.45.0 // indirect
53+
github.com/prometheus/client_golang v1.18.0 // indirect
54+
github.com/prometheus/client_model v0.6.0 // indirect
55+
github.com/prometheus/common v0.47.0 // indirect
5756
github.com/prometheus/procfs v0.12.0 // indirect
5857
github.com/spf13/cobra v1.8.0 // indirect
5958
go.uber.org/multierr v1.11.0 // indirect
6059
go.uber.org/zap v1.26.0 // indirect
61-
golang.org/x/net v0.17.0 // indirect
62-
golang.org/x/oauth2 v0.13.0 // indirect
63-
golang.org/x/sys v0.14.0 // indirect
64-
golang.org/x/term v0.13.0 // indirect
60+
golang.org/x/net v0.21.0 // indirect
61+
golang.org/x/oauth2 v0.17.0 // indirect
62+
golang.org/x/sys v0.17.0 // indirect
63+
golang.org/x/term v0.17.0 // indirect
6564
golang.org/x/text v0.14.0 // indirect
66-
golang.org/x/time v0.4.0 // indirect
65+
golang.org/x/time v0.5.0 // indirect
6766
google.golang.org/appengine v1.6.8 // indirect
68-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
69-
google.golang.org/protobuf v1.31.0 // indirect
67+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 // indirect
68+
google.golang.org/protobuf v1.32.0 // indirect
7069
gopkg.in/inf.v0 v0.9.1 // indirect
7170
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
7271
gopkg.in/yaml.v2 v2.4.0 // indirect
7372
gopkg.in/yaml.v3 v3.0.1 // indirect
74-
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
75-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
73+
k8s.io/kube-openapi v0.0.0-20240209001042-7a0d5b415232 // indirect
74+
k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect
7675
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
7776
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
7877
sigs.k8s.io/yaml v1.4.0 // indirect

0 commit comments

Comments
 (0)