mount fuse filesystem inside kubernetes pod

5/26/2020

I would like to mount a google drive inside my pod. I add:

    securityContext:
      privileged: true
      capabilities:
        add:
        - SYS_ADMIN

to the pod. However, google drive ocamlfuse mounts the data directory, but a simple command on the mounted file system results with a Input/output error.

Is it possible to mount a fuse filesystem inside a pod? Is there anything I need on the host?

-- yee379
fuse
kubernetes

0 Answers