Skip to content

Commit e44513f

Browse files
author
shiftstack-merge-bot
committed
2 parents 49f2d86 + 57bf760 commit e44513f

File tree

2,505 files changed

+278869
-59338
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,505 files changed

+278869
-59338
lines changed

.github/workflows/trivy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install go
1616
uses: actions/setup-go@v6
1717
with:
18-
go-version: 1.24.9
18+
go-version: 1.24.11
1919

2020
- name: Build an image from Dockerfile
2121
run: |

charts/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
### install a specific version
1717
> [!IMPORTANT]
18-
> Starting from version `4.11.0`, the prefix `v` is removed from hlem chart release so they are in line with [semver](https://semver.org). Therefore, when upgrading, refer to version `4.11.0` instead of `v4.11.0`.
18+
> Starting from version `4.11.0`, the prefix `v` is removed from helm chart release so they are in line with [semver](https://semver.org). Therefore, when upgrading, refer to version `4.11.0` instead of `v4.11.0`.
1919
2020
```console
2121
helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
@@ -56,7 +56,7 @@ The following table lists the configurable parameters of the latest NFS CSI Driv
5656
| `image.nfs.tag` | csi-driver-nfs image tag | `latest` |
5757
| `image.nfs.pullPolicy` | csi-driver-nfs image pull policy | `IfNotPresent` |
5858
| `image.csiProvisioner.repository` | csi-provisioner docker image | `registry.k8s.io/sig-storage/csi-provisioner` |
59-
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v5.3.0` |
59+
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v6.1.0` |
6060
| `image.csiProvisioner.pullPolicy` | csi-provisioner image pull policy | `IfNotPresent` |
6161
| `image.livenessProbe.repository` | liveness-probe docker image | `registry.k8s.io/sig-storage/livenessprobe` |
6262
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.17.0` |
1 Byte
Binary file not shown.

charts/latest/csi-driver-nfs/values.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ image:
66
tag: canary
77
pullPolicy: IfNotPresent
88
csiProvisioner:
9-
repository: registry.k8s.io/sig-storage/csi-provisioner
10-
tag: v6.0.0
9+
repository: /sig-storage/csi-provisioner
10+
tag: v6.1.0
1111
pullPolicy: IfNotPresent
1212
csiResizer:
13-
repository: registry.k8s.io/sig-storage/csi-resizer
13+
repository: /sig-storage/csi-resizer
1414
tag: v2.0.0
1515
pullPolicy: IfNotPresent
1616
csiSnapshotter:
17-
repository: registry.k8s.io/sig-storage/csi-snapshotter
17+
repository: /sig-storage/csi-snapshotter
1818
tag: v8.4.0
1919
pullPolicy: IfNotPresent
2020
livenessProbe:
21-
repository: registry.k8s.io/sig-storage/livenessprobe
21+
repository: /sig-storage/livenessprobe
2222
tag: v2.17.0
2323
pullPolicy: IfNotPresent
2424
nodeDriverRegistrar:
25-
repository: registry.k8s.io/sig-storage/csi-node-driver-registrar
25+
repository: /sig-storage/csi-node-driver-registrar
2626
tag: v2.15.0
2727
pullPolicy: IfNotPresent
2828
externalSnapshotter:
29-
repository: registry.k8s.io/sig-storage/snapshot-controller
29+
repository: /sig-storage/snapshot-controller
3030
tag: v8.4.0
3131
pullPolicy: IfNotPresent
3232

deploy/csi-nfs-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
effect: "NoSchedule"
3939
containers:
4040
- name: csi-provisioner
41-
image: registry.k8s.io/sig-storage/csi-provisioner:v6.0.0
41+
image: registry.k8s.io/sig-storage/csi-provisioner:v6.1.0
4242
args:
4343
- "-v=2"
4444
- "--csi-address=$(ADDRESS)"

deploy/example/nfs-provisioner/nginx-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
- nfsvers=4.1
1717
csi:
1818
driver: nfs.csi.k8s.io
19-
# volumeHandle format: {nfs-server-address}#{sub-dir-name}#{share-name}
19+
# volumeHandle format: {nfs-server-address}#{share-name}#{sub-dir-name}
2020
# make sure this value is unique for every share in the cluster
2121
volumeHandle: nfs-server.default.svc.cluster.local/share##
2222
volumeAttributes:

deploy/example/pv-nfs-csi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
- nfsvers=4.1
1717
csi:
1818
driver: nfs.csi.k8s.io
19-
# volumeHandle format: {nfs-server-address}#{sub-dir-name}#{share-name}
19+
# volumeHandle format: {nfs-server-address}#{share-name}#{sub-dir-name}
2020
# make sure this value is unique for every share in the cluster
2121
volumeHandle: nfs-server.default.svc.cluster.local/share##
2222
volumeAttributes:

docs/driver-parameters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ onDelete | when volume is deleted, keep the directory if it's `retain` | `delete
1414

1515
- VolumeID(`volumeHandle`) is the identifier of the volume handled by the driver, format of VolumeID:
1616
```
17-
{nfs-server-address}#{sub-dir-name}#{share-name}
17+
{nfs-server-address}#{share-name}#{sub-dir-name}
1818
```
1919
> example: `nfs-server.default.svc.cluster.local/share#subdir#`
2020
@@ -23,7 +23,7 @@ onDelete | when volume is deleted, keep the directory if it's `retain` | `delete
2323
2424
Name | Meaning | Example Value | Mandatory | Default value
2525
--- | --- | --- | --- | ---
26-
volumeHandle | Specify a value the driver can use to uniquely identify the share in the cluster. | A recommended way to produce a unique value is to combine the nfs-server address, sub directory name and share name: `{nfs-server-address}#{sub-dir-name}#{share-name}`. | Yes |
26+
volumeHandle | Specify a value the driver can use to uniquely identify the share in the cluster. | A recommended way to produce a unique value is to combine the nfs-server address, sub directory name and share name: `{nfs-server-address}#{share-name}#{sub-dir-name}`. | Yes |
2727
volumeAttributes.server | NFS Server address | domain name `nfs-server.default.svc.cluster.local` <br>or IP address `127.0.0.1` | Yes |
2828
volumeAttributes.share | NFS share path | `/` | Yes |
2929
volumeAttributes.mountPermissions | mounted folder permissions. The default is `0`, if set as non-zero, driver will perform `chmod` after mount | | No |

go.mod

Lines changed: 67 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ require (
66
github.com/container-storage-interface/spec v1.11.0
77
github.com/kubernetes-csi/csi-lib-utils v0.9.0
88
github.com/onsi/ginkgo/v2 v2.27.2
9-
github.com/onsi/gomega v1.38.2
9+
github.com/onsi/gomega v1.38.3
1010
github.com/pborman/uuid v1.2.1
1111
github.com/stretchr/testify v1.11.1
1212
go.uber.org/goleak v1.3.0
1313
google.golang.org/grpc v1.77.0
1414
google.golang.org/protobuf v1.36.10
15-
k8s.io/api v0.31.12
16-
k8s.io/apimachinery v0.31.12
17-
k8s.io/client-go v0.31.12
15+
k8s.io/api v0.32.10
16+
k8s.io/apimachinery v0.32.10
17+
k8s.io/client-go v0.32.10
1818
k8s.io/klog/v2 v2.130.1
19-
k8s.io/kubernetes v1.31.12
19+
k8s.io/kubernetes v1.32.10
2020
k8s.io/mount-utils v0.32.0
2121
k8s.io/pod-security-admission v0.0.0
2222
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
@@ -27,19 +27,41 @@ require (
2727
require go.opentelemetry.io/auto/sdk v1.2.1 // indirect
2828

2929
require (
30+
cel.dev/expr v0.24.0 // indirect
3031
cyphar.com/go-pathrs v0.2.1 // indirect
32+
github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab // indirect
3133
github.com/Masterminds/semver/v3 v3.4.0 // indirect
34+
github.com/Microsoft/go-winio v0.6.2 // indirect
3235
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
36+
github.com/containerd/containerd/api v1.7.19 // indirect
37+
github.com/containerd/errdefs v0.1.0 // indirect
38+
github.com/containerd/log v0.1.0 // indirect
39+
github.com/containerd/ttrpc v1.2.5 // indirect
3340
github.com/cyphar/filepath-securejoin v0.6.0 // indirect
34-
github.com/distribution/reference v0.5.0 // indirect
41+
github.com/distribution/reference v0.6.0 // indirect
42+
github.com/docker/go-units v0.5.0 // indirect
43+
github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect
3544
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
45+
github.com/godbus/dbus/v5 v5.1.0 // indirect
46+
github.com/google/btree v1.0.1 // indirect
47+
github.com/google/cadvisor v0.51.0 // indirect
3648
github.com/gorilla/websocket v1.5.0 // indirect
49+
github.com/karrick/godirwalk v1.17.0 // indirect
50+
github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible // indirect
3751
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
52+
github.com/opencontainers/runc v1.2.9 // indirect
53+
github.com/opencontainers/runtime-spec v1.2.0 // indirect
54+
github.com/sirupsen/logrus v1.9.3 // indirect
3855
github.com/x448/float16 v0.8.4 // indirect
3956
go.yaml.in/yaml/v2 v2.4.2 // indirect
4057
go.yaml.in/yaml/v3 v3.0.4 // indirect
4158
golang.org/x/net v0.47.0 // indirect
4259
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
60+
k8s.io/cri-api v0.32.10 // indirect
61+
k8s.io/cri-client v0.0.0 // indirect
62+
k8s.io/csi-translation-lib v0.0.0 // indirect
63+
k8s.io/dynamic-resource-allocation v0.0.0 // indirect
64+
k8s.io/kube-scheduler v0.0.0 // indirect
4365
)
4466

4567
require (
@@ -57,34 +79,32 @@ require (
5779
github.com/fsnotify/fsnotify v1.7.0 // indirect
5880
github.com/go-logr/logr v1.4.3 // indirect
5981
github.com/go-logr/stdr v1.2.2 // indirect
60-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
82+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
6183
github.com/go-openapi/jsonreference v0.20.2 // indirect
62-
github.com/go-openapi/swag v0.22.4 // indirect
84+
github.com/go-openapi/swag v0.23.0 // indirect
6385
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
6486
github.com/gogo/protobuf v1.3.2 // indirect
65-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
6687
github.com/golang/protobuf v1.5.4 // indirect
67-
github.com/google/cel-go v0.20.1 // indirect
88+
github.com/google/cel-go v0.22.0 // indirect
6889
github.com/google/gnostic-models v0.6.8 // indirect
6990
github.com/google/go-cmp v0.7.0 // indirect
7091
github.com/google/gofuzz v1.2.0 // indirect
7192
github.com/google/pprof v0.0.0-20250820193118-f64d9cf942d6 // indirect
7293
github.com/google/uuid v1.6.0 // indirect
7394
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
7495
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
75-
github.com/imdario/mergo v0.3.6 // indirect
7696
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7797
github.com/josharian/intern v1.0.0 // indirect
7898
github.com/json-iterator/go v1.1.12 // indirect
7999
github.com/mailru/easyjson v0.7.7 // indirect
80-
github.com/moby/spdystream v0.4.0 // indirect
100+
github.com/moby/spdystream v0.5.0 // indirect
81101
github.com/moby/sys/mountinfo v0.7.2 // indirect
82102
github.com/moby/sys/userns v0.1.0 // indirect
83103
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
84104
github.com/modern-go/reflect2 v1.0.2 // indirect
85105
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
86106
github.com/opencontainers/go-digest v1.0.0 // indirect
87-
github.com/opencontainers/selinux v1.13.0 // indirect
107+
github.com/opencontainers/selinux v1.13.1 // indirect
88108
github.com/pkg/errors v0.9.1 // indirect
89109
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
90110
github.com/prometheus/client_golang v1.19.1 // indirect
@@ -93,10 +113,10 @@ require (
93113
github.com/prometheus/procfs v0.15.1 // indirect
94114
github.com/spf13/cobra v1.8.1 // indirect
95115
github.com/spf13/pflag v1.0.5 // indirect
96-
github.com/stoewer/go-strcase v1.2.0 // indirect
97-
go.etcd.io/etcd/api/v3 v3.5.14 // indirect
98-
go.etcd.io/etcd/client/pkg/v3 v3.5.14 // indirect
99-
go.etcd.io/etcd/client/v3 v3.5.14 // indirect
116+
github.com/stoewer/go-strcase v1.3.0 // indirect
117+
go.etcd.io/etcd/api/v3 v3.5.16 // indirect
118+
go.etcd.io/etcd/client/pkg/v3 v3.5.16 // indirect
119+
go.etcd.io/etcd/client/v3 v3.5.16 // indirect
100120
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
101121
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
102122
go.opentelemetry.io/otel v1.38.0 // indirect
@@ -107,7 +127,7 @@ require (
107127
go.opentelemetry.io/otel/trace v1.38.0 // indirect
108128
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
109129
go.uber.org/multierr v1.11.0 // indirect
110-
go.uber.org/zap v1.26.0 // indirect
130+
go.uber.org/zap v1.27.0 // indirect
111131
golang.org/x/crypto v0.45.0 // indirect
112132
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
113133
golang.org/x/mod v0.30.0
@@ -116,45 +136,45 @@ require (
116136
golang.org/x/sys v0.38.0 // indirect
117137
golang.org/x/term v0.37.0 // indirect
118138
golang.org/x/text v0.31.0 // indirect
119-
golang.org/x/time v0.3.0 // indirect
139+
golang.org/x/time v0.7.0 // indirect
120140
golang.org/x/tools v0.38.0 // indirect
121141
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
122142
google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8 // indirect
123143
google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 // indirect
124144
gopkg.in/inf.v0 v0.9.1 // indirect
125145
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
126-
gopkg.in/yaml.v2 v2.4.0 // indirect
127146
gopkg.in/yaml.v3 v3.0.1 // indirect
128147
k8s.io/apiextensions-apiserver v0.0.0 // indirect
129-
k8s.io/apiserver v0.31.12 // indirect
130-
k8s.io/cloud-provider v0.31.12 // indirect
131-
k8s.io/component-base v0.31.12 // indirect
132-
k8s.io/component-helpers v0.31.12 // indirect
133-
k8s.io/controller-manager v0.31.12 // indirect
134-
k8s.io/kms v0.31.12 // indirect
135-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
148+
k8s.io/apiserver v0.32.10 // indirect
149+
k8s.io/cloud-provider v0.32.10 // indirect
150+
k8s.io/component-base v0.32.10 // indirect
151+
k8s.io/component-helpers v0.32.10 // indirect
152+
k8s.io/controller-manager v0.32.10 // indirect
153+
k8s.io/kms v0.32.10 // indirect
154+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
136155
k8s.io/kubectl v0.0.0 // indirect
137-
k8s.io/kubelet v0.31.12 // indirect
138-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
139-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
140-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
156+
k8s.io/kubelet v0.32.10 // indirect
157+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0 // indirect
158+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
159+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
141160
)
142161

143162
replace (
144-
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.31.12
145-
k8s.io/cloud-provider => k8s.io/cloud-provider v0.31.12
146-
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.31.12
147-
k8s.io/cri-client => k8s.io/cri-client v0.31.12
148-
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.31.12
149-
k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.31.12
150-
k8s.io/endpointslice => k8s.io/endpointslice v0.31.12
151-
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.31.12
152-
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.31.12
153-
k8s.io/kube-proxy => k8s.io/kube-proxy v0.31.12
154-
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.31.12
155-
k8s.io/kubectl => k8s.io/kubectl v0.31.12
156-
k8s.io/kubelet => k8s.io/kubelet v0.31.12
157-
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.31.12
158-
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.31.12
159-
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.31.12
163+
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.32.10
164+
k8s.io/cloud-provider => k8s.io/cloud-provider v0.32.10
165+
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.32.10
166+
k8s.io/cri-client => k8s.io/cri-client v0.32.10
167+
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.32.10
168+
k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.32.10
169+
k8s.io/endpointslice => k8s.io/endpointslice v0.32.10
170+
k8s.io/externaljwt => k8s.io/externaljwt v0.32.10
171+
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.32.10
172+
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.32.10
173+
k8s.io/kube-proxy => k8s.io/kube-proxy v0.32.10
174+
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.32.10
175+
k8s.io/kubectl => k8s.io/kubectl v0.32.10
176+
k8s.io/kubelet => k8s.io/kubelet v0.32.10
177+
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.32.10
178+
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.32.10
179+
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.32.10
160180
)

0 commit comments

Comments
 (0)