-
-
Notifications
You must be signed in to change notification settings - Fork 244
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
Add a nfs
storage driver
#1311
Comments
Hello, I can try this task. Can you please direct me to the relevant directories and files? Thanks |
The relevant files are in We did something similar to that with the In the case of |
hey @vivekkoya, how are things going? Need any help? |
Yes, I need help. I am mainly a java programmer studying in university. I am new to Go network programming. Do you recommend any resources to learn Go? |
https://go.dev/learn/ has some useful resources, especially the online sandbox that lets you play with some of the concepts at https://go.dev/tour/welcome/1. The syntax shouldn't be much of an issue coming from Java, but the usual things to learn for Go are going to be:
|
nfs
would be a small shim storage driver on top of ourdir
driver that would handle mounting the NFS share as needed on all servers within the cluster.This should be restricted to only custom volumes and only filesystem type volumes for those as storing block/loop files on top of NFS seems like a bad idea and most NFS servers aren't quite POSIX enough to properly handle full containers (locking is always a bit weird).
The text was updated successfully, but these errors were encountered: