Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge upstream into openshift/csi-driver-nfs #77

Merged
merged 12 commits into from
Mar 24, 2022
1 change: 1 addition & 0 deletions deploy/example/pv-nfs-csi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ spec:
- ReadWriteMany
persistentVolumeReclaimPolicy: Retain
mountOptions:
- nconnect=8
- hard
- nfsvers=4.1
csi:
Expand Down
1 change: 1 addition & 0 deletions deploy/example/storageclass-nfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ parameters:
reclaimPolicy: Delete
volumeBindingMode: Immediate
mountOptions:
- nconnect=8
- hard
- nfsvers=4.1
2 changes: 1 addition & 1 deletion test/e2e/dynamic_provisioning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ var _ = ginkgo.Describe("Dynamic Provisioning", func() {
Pods: pods,
Server: nfsServerAddress,
Share: nfsShare,
MountOptions: "nfsvers=4.1,sec=sys",
MountOptions: "nconnect=8,nfsvers=4.1,sec=sys",
ReadOnly: false,
}
test.Run(cs, ns)
Expand Down