Hello!,
I am new to Jupyterhub/notebook and exploring different ways to setup ML pipelines internally for my user community at work. I have a k8s cluster where I using helm to install and setup Jupyterhub. I want to know if there is a way to map or point the /work directectory to the /home/{username}, where every user has their own persistent storage for the pod. Now I can change the CWD using python to /home/{username} from the default /home/jovyan. However, I still cannot save the work to /home/{username}. All the .py files end up in /home/jovyan and the user has to manually copy those files to their home directory to be persistent.
Is there any way to change the default /work that points to /home/jovyan to /home/{username} wherever the user logs in. I am using the jupyter/base-notebook image.
Thanks