Running RKE2 completely on an NFS server #6600
davidgaster
started this conversation in
General
Replies: 1 comment 1 reply
-
It might work, but I don't think it would work well. Why would you want to put your container runtime on a shared filesystem? They are not in any way designed to be shared between nodes. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, after researching a few other github discussions, the consensus is that operating directly on NFS is not recommended, and a compatible filesystem like ext4 is preferred. However, our embedded system mandates that the entire container runtime is mounted to an NFS server on boot. I'm exploring
fuse-overlayfs
as an alternative to the defaultoverlayfs
andnative
containerd snapshotters, as I've hit a roadblock due to lack of extended attribute support in Linux kernels before 5.11, and our NFS server can't be updated to a newer kernel.Before proceeding with trying to get
fuse-overlayfs
working, I'd like to confirm whether this approach is even viable with these constraints. Any advice or suggestions would be greatly appreciated!Beta Was this translation helpful? Give feedback.
All reactions