Hi, are there any plans for adding support for mou...
# ask-metaflow
p
Hi, are there any plans for adding support for mounting volumes in flows executed on the Kubernetes cluster?
1
s
can you help me with your use case?
p
I have metaflow deployed on on-prem kubernetes cluster. I also have nfs volume and I'd like to mount nfs share to the pod running metaflow task.
a
Got it. At some point in the near future, we would like to provide support for this use case. Meanwhile, can you work around by ensuring that the data in the nfs volume is available in the blog store that you have configured for your deployment?
b
yesterday's release enables this use case: https://github.com/Netflix/metaflow/releases/tag/2.8.6 For the NFS shares, you would want to set up a PersistentVolumeClaim for the share on your Kubernetes cluster, and then simply mount this via the decorator (or with an environment variable if you want it mounted for all Kubernetes steps)
🙌 1