jupyterhub / the-littlest-jupyterhub

Simple JupyterHub distribution for 1-100 users on a single server
https://tljh.jupyter.org
BSD 3-Clause "New" or "Revised" License
1.01k stars 341 forks source link

Need to access old version #937

Closed sanalmgr closed 10 months ago

sanalmgr commented 10 months ago

I have built a training platform based on the old version of Littlest Jupyterhub (not the latest one). When it was time to move it to the production environment, I noticed that the version is changed, and it collapsed my entire platform because many core add-ons stopped working. Now, the platform is at stake, and I do not have any other option that could alternatively deliver the platform in a short amount of time.

Proposed change

Please add a feature through which users can retrieve the old version of Littlest Jupyterhub.

Alternative options

No other option I think of except for accessing the old version.

Who would use this feature?

The clients (more than 2000) of my company will benefit from the platform if successfully deployed.

(Optional): Suggest a solution

Please allow passing the parameters to specify the retrieval of the old version of Littlest Jupyterhub.

welcome[bot] commented 10 months ago

Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! :hugs:
If you haven't done so already, check out Jupyter's Code of Conduct. Also, please try to follow the issue template as it helps other other community members to contribute more effectively. welcome You can meet the other Jovyans by joining our Discourse forum. There is also an intro thread there where you can stop by and say Hi! :wave:
Welcome to the Jupyter community! :tada:

MridulS commented 10 months ago

You can install the previous version by passing a git reference while setting up the VM, something like:

#!/bin/bash
curl -L https://tljh.jupyter.org/bootstrap.py \
  | sudo python3 - \
    --admin <admin> --version 0.2.0
sanalmgr commented 10 months ago

You can install the previous version by passing a git reference while setting up the VM, something like:

#!/bin/bash
curl -L https://tljh.jupyter.org/bootstrap.py \
  | sudo python3 - \
    --admin <admin> --version 0.2.0

It worked - running the command by specifying the version worked like a charm. You made my day!!!! Thank you so much!!!!