Skip to content

Commit 24c72c3

Browse files
authored
Merge pull request #361 from jacobwolfaws/master
Bump dependencies for v1.1.0
2 parents 721405e + ee5a035 commit 24c72c3

File tree

7 files changed

+140
-233
lines changed

7 files changed

+140
-233
lines changed

Dockerfile

+1-1
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 golang:1.20 as builder
15+
FROM --platform=$BUILDPLATFORM golang:1.21 as builder
1616
WORKDIR /go/src/github.com/kubernetes-sigs/aws-fsx-csi-driver
1717
COPY . .
1818
ARG TARGETOS

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.10.0-eks-1-27-7
17+
tag: v2.11.0-eks-1-28-7
1818
pullPolicy: IfNotPresent
1919
resources: {}
2020
nodeDriverRegistrar:
2121
image:
2222
repository: public.ecr.aws/eks-distro/kubernetes-csi/node-driver-registrar
23-
tag: v2.8.0-eks-1-27-7
23+
tag: v2.9.0-eks-1-28-7
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.5.0-eks-1-27-7
30+
tag: v3.6.0-eks-1-28-7
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.8.0-eks-1-27-7
37+
tag: v1.9.0-eks-1-28-7
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.5.0-eks-1-27-7
75+
image: public.ecr.aws/eks-distro/kubernetes-csi/external-provisioner:v3.6.0-eks-1-28-7
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.8.0-eks-1-27-7
89+
image: public.ecr.aws/eks-distro/kubernetes-csi/external-resizer:v1.9.0-eks-1-28-7
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.10.0-eks-1-27-7
102+
image: public.ecr.aws/eks-distro/kubernetes-csi/livenessprobe:v2.11.0-eks-1-28-7
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.8.0-eks-1-27-7
64+
image: public.ecr.aws/eks-distro/kubernetes-csi/node-driver-registrar:v2.9.0-eks-1-28-7
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.10.0-eks-1-27-7
85+
image: public.ecr.aws/eks-distro/kubernetes-csi/livenessprobe:v2.11.0-eks-1-28-7
8686
imagePullPolicy: IfNotPresent
8787
args:
8888
- --csi-address=/csi/csi.sock

go.mod

+38-39
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
module sigs.k8s.io/aws-fsx-csi-driver
22

33
require (
4-
github.com/aws/aws-sdk-go v1.44.299
5-
github.com/container-storage-interface/spec v1.8.0
4+
github.com/aws/aws-sdk-go v1.47.4
5+
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.4
9+
github.com/onsi/gomega v1.27.6
1010
github.com/spf13/pflag v1.0.5
11-
google.golang.org/grpc v1.56.2
12-
k8s.io/api v0.27.3
13-
k8s.io/apimachinery v0.27.3
14-
k8s.io/client-go v0.27.3
15-
k8s.io/component-base v0.27.3
16-
k8s.io/klog/v2 v2.100.1
17-
k8s.io/mount-utils v0.27.3
11+
google.golang.org/grpc v1.59.0
12+
k8s.io/api v0.28.3
13+
k8s.io/apimachinery v0.28.3
14+
k8s.io/client-go v0.28.3
15+
k8s.io/component-base v0.28.3
16+
k8s.io/klog/v2 v2.110.1
17+
k8s.io/mount-utils v0.28.3
1818

1919
)
2020

@@ -23,58 +23,57 @@ require (
2323
github.com/blang/semver/v4 v4.0.0 // indirect
2424
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2525
github.com/davecgh/go-spew v1.1.1 // indirect
26-
github.com/emicklei/go-restful/v3 v3.10.2 // indirect
26+
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2727
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
2828
github.com/fsnotify/fsnotify v1.4.9 // indirect
29-
github.com/go-logr/logr v1.2.4 // indirect
30-
github.com/go-logr/zapr v1.2.4 // indirect
31-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
29+
github.com/go-logr/logr v1.3.0 // indirect
30+
github.com/go-logr/zapr v1.3.0 // indirect
31+
github.com/go-openapi/jsonpointer v0.20.0 // indirect
3232
github.com/go-openapi/jsonreference v0.20.2 // indirect
3333
github.com/go-openapi/swag v0.22.4 // indirect
3434
github.com/gogo/protobuf v1.3.2 // indirect
3535
github.com/golang/protobuf v1.5.3 // indirect
36-
github.com/google/gnostic v0.6.9 // indirect
37-
github.com/google/go-cmp v0.5.9 // indirect
36+
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
37+
github.com/google/go-cmp v0.6.0 // indirect
3838
github.com/google/gofuzz v1.2.0 // indirect
39-
github.com/google/uuid v1.3.0 // indirect
39+
github.com/google/uuid v1.4.0 // indirect
4040
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4141
github.com/jmespath/go-jmespath v0.4.0 // indirect
4242
github.com/josharian/intern v1.0.0 // indirect
4343
github.com/json-iterator/go v1.1.12 // indirect
4444
github.com/mailru/easyjson v0.7.7 // indirect
45-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
46-
github.com/moby/sys/mountinfo v0.6.2 // indirect
45+
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
46+
github.com/moby/sys/mountinfo v0.7.1 // indirect
4747
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4848
github.com/modern-go/reflect2 v1.0.2 // indirect
4949
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5050
github.com/nxadm/tail v1.4.8 // indirect
5151
github.com/pkg/errors v0.9.1 // indirect
52-
github.com/prometheus/client_golang v1.16.0 // indirect
53-
github.com/prometheus/client_model v0.4.0 // indirect
54-
github.com/prometheus/common v0.44.0 // indirect
55-
github.com/prometheus/procfs v0.11.0 // indirect
56-
github.com/spf13/cobra v1.7.0 // indirect
57-
go.uber.org/atomic v1.11.0 // indirect
52+
github.com/prometheus/client_golang v1.17.0 // indirect
53+
github.com/prometheus/client_model v0.5.0 // indirect
54+
github.com/prometheus/common v0.45.0 // indirect
55+
github.com/prometheus/procfs v0.12.0 // indirect
56+
github.com/spf13/cobra v1.8.0 // indirect
5857
go.uber.org/multierr v1.11.0 // indirect
59-
go.uber.org/zap v1.24.0 // indirect
60-
golang.org/x/net v0.12.0 // indirect
61-
golang.org/x/oauth2 v0.10.0 // indirect
62-
golang.org/x/sys v0.10.0 // indirect
63-
golang.org/x/term v0.10.0 // indirect
64-
golang.org/x/text v0.11.0 // indirect
65-
golang.org/x/time v0.3.0 // indirect
66-
google.golang.org/appengine v1.6.7 // indirect
67-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect
58+
go.uber.org/zap v1.26.0 // indirect
59+
golang.org/x/net v0.17.0 // indirect
60+
golang.org/x/oauth2 v0.13.0 // indirect
61+
golang.org/x/sys v0.14.0 // indirect
62+
golang.org/x/term v0.13.0 // indirect
63+
golang.org/x/text v0.14.0 // indirect
64+
golang.org/x/time v0.4.0 // indirect
65+
google.golang.org/appengine v1.6.8 // indirect
66+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
6867
google.golang.org/protobuf v1.31.0 // indirect
6968
gopkg.in/inf.v0 v0.9.1 // indirect
7069
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
7170
gopkg.in/yaml.v2 v2.4.0 // indirect
7271
gopkg.in/yaml.v3 v3.0.1 // indirect
73-
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
74-
k8s.io/utils v0.0.0-20230711102312-30195339c3c7 // indirect
72+
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
73+
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
7574
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
76-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
77-
sigs.k8s.io/yaml v1.3.0 // indirect
75+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
76+
sigs.k8s.io/yaml v1.4.0 // indirect
7877
)
7978

80-
go 1.20
79+
go 1.21

0 commit comments

Comments
 (0)