-
Notifications
You must be signed in to change notification settings - Fork 260
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
Container image is missing /etc/protocols
causing Output: mount.nfs: Protocol not supported
on NFSv3
#251
Comments
Patched docker image available at https://github.com/strideynet/csi-nfs-driver-patched Use with the following helm values:
|
thanks, I have worked out a PR: #253, pls take a look. |
@andyzhangx PR looks good, matches my own implementation of a fix. |
|
andyzhangx
added a commit
to andyzhangx/csi-driver-nfs
that referenced
this issue
Jun 5, 2024
f40f0cc Merge pull request kubernetes-csi#256 from solumath/master cfa9210 Instruction update 379a1bb Merge pull request kubernetes-csi#255 from humblec/sidecar-md a5667bb fix typo in sidecar release process 4967685 Merge pull request kubernetes-csi#254 from bells17/add-github-actions d9bd160 Update skip list in codespell GitHub Action adb3af9 Merge pull request kubernetes-csi#252 from bells17/update-go-version f5aebfc Add GitHub Actions workflows b82ee38 Merge pull request kubernetes-csi#253 from bells17/fix-typo c317456 Fix typo 0a78505 Bump to Go 1.22.3 edd89ad Merge pull request kubernetes-csi#251 from jsafrane/add-logcheck 043fd09 Add test-logcheck target d7535ae Merge pull request kubernetes-csi#250 from jsafrane/go-1.22 b52e7ad Update go to 1.22.2 14fdb6f Merge pull request kubernetes-csi#247 from msau42/prow dc4d0ae Merge pull request kubernetes-csi#249 from jsafrane/use-go-version e681b17 Use .go-version to get Kubernetes go version 9b4352e Update release playbook c7bb972 Fix release notes script to use fixed tags 463a0e9 Add script to update specific go modules git-subtree-dir: release-tools git-subtree-split: f40f0cc
TerryHowe
pushed a commit
to TerryHowe/csi-driver-nfs
that referenced
this issue
Oct 17, 2024
Add test-logcheck target
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What happened:
Attempting to mount a NFSv3 share produces:
What you expected to happen:
It to mount without error.
How to reproduce it:
Attempt to use a NFSv3 server.
Anything else we need to know?:
During investigation, I found that
exec
ing into the container and runningapt install netbase
which provides the/etc/protocols
file means I am then able to successfully mount the share:We should probably install this package within the docker container, or manually provide a
/etc/protocols
file.Environment:
kubectl version
):uname -a
):Linux kce-staging 5.4.0-26-generic #30-Ubuntu SMP Mon Apr 20 16:58:30 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered: