Re: Accessing Remote Files via SSHFS

2018-03-28 Thread Jamie Jackson
Okay, thanks for the reference (and it's heads up to the k8s GitHub ticket about supporting fuse volumes). On Wed, Mar 28, 2018 at 4:38 PM, Joel Pearson wrote: > A quick google found this: > > https://karlstoney.com/2017/03/01/fuse-mount-in-kubernetes/ > > It

Re: Accessing Remote Files via SSHFS

2018-03-28 Thread Joel Pearson
A quick google found this: https://karlstoney.com/2017/03/01/fuse-mount-in-kubernetes/ It looks like the approach would work for you too. But it’s worth mentioning that he’s doing the mount from within the container, so he needs the pod to start as a privileged pod. You can do that in open shift

Accessing Remote Files via SSHFS

2018-03-28 Thread Jamie Jackson
Hi Folks, I'm in the process of containerizing my stack. One of the pieces of the legacy stack accesses a remote file system over SSHFS (autofs manages the access). What would be the best way to handle this kind of requirement on OpenShift? FYI, I'm currently using straight docker for the stack