How to have file written automatically in the startup folder when a new user signs up/in on JuPyter hub?

时光怂恿深爱的人放手 提交于 2019-12-11 15:17:33

问题


I am using JuPyter hub on k8s. It has a persistent volume claim. I want to have my users use a variable run_id = "sample"every time they use jupyter notebook.

Doing so requires making a file aviral.py in the path /home/jovyan/.ipython/profile_default/startup with the content run_id = "sample".

I have to do this manually and would want this to be done as soon as the new user's pod is created for the first time i.e. the file gets written there itself.

Is there any way to automate this?

Everything mentioned here is taken off the shelf, as described here:

https://zero-to-jupyterhub.readthedocs.io/en/latest/setup-jupyterhub.html


回答1:


I think the easiest way would be to create a ConfigMap from your aviral.py file:

kubectl create configmap aviral-configmap --from-file=aviral.py

And add it to the Deployment used by JuPyter Hub. You can read how to Customizing your Deployment as this would require modification of you config.yaml and applying the changes.

Inside your deployment you need to add following container spec:

spec:
  containers:
    - name: <Container_Name>
      image: <Image_Name>
      volumeMounts:
        - name: my-config
          mountPath: /home/jovyan/.ipython/profile_default/startup
  volumes:
    - name: my-config
      configMap:
        name: aviral-configmap

If I'm not mistaken and this is indeed correct config.yaml for Jupyter Hub, the storage part should look like the following:

...
    extraVolumes:
        - name: home
          hostPath:
            path: /data/homes/{username}
        - name: tutorial
          hostPath:
            path: /data/homes/_tutorials
        - name: my-config
          configMap:
            name: aviral-configmap
    extraVolumeMounts:
        - name: home
          mountPath: /home/jovyan
        - name: tutorial
          mountPath: /home/jovyan/tutorials
          readOnly: True
        - name: my-config
          mountPath: /home/jovyan/.ipython/profile_default/startup
...

Or another approach, you could modify your config.yaml and change postStart command so it might look like this:

...
postStart:
      exec:
        command: ["/bin/sh", "-c", "test -d $HOME/my-work || mkdir $HOME/my-work; mkdir -p /home/jovyan/.ipython/profile_default/startup; echo 'run_id = sample' > aviral.py"]
...

You can check the documentation about Define a Command and Arguments for a Container.

I hope this helps.



来源:https://stackoverflow.com/questions/56161350/how-to-have-file-written-automatically-in-the-startup-folder-when-a-new-user-sig

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!