Multi-user hub which spawns, manages, and proxies multiple workspace instances.
Highlights β’ Getting Started β’ Features & Screenshots β’ Support β’ Report a Bug β’ Contribution
MLHub is based on Jupyterhub with complete focus on Docker and Kubernetes. MLHub allows to create and manage multiple workspaces, for example to distribute them to a group of people or within a team.
- π« Create, manage, and access Jupyter notebooks. Use it as an admin to distribute workspaces to other users, use it in self-service mode, or both.
- ποΈ Set configuration parameters such as CPU-limits for started workspaces.
- π₯ Access additional tools within the started workspaces by having secured routes.
- π Tunnel SSH connections to workspace containers.
- π³ Focused on Docker and Kubernetes with enhanced functionality.
- Docker
- Kubernetes (for Kubernetes modes)
- Helm (for easy deployment via our helm chart)
Most parts will be identical to the configuration of Jupyterhub 1.0.0. One of the things that are different is that ssl will not be activated on proxy or hub-level, but on our nginx proxy.
docker run \
-p 8080 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v jupyterhub_data:/data \
mltooling/ml-hub:latest
To persist the hub data, such as started workspaces and created users, mount a directory to /data
.
Any given name (--name
) will be overruled by the environment variable HUB_NAME
.
For Kubernetes deployment, we forked and modified zero-to-jupyterhub-k8s which you can find here.
When using the default config - so leaving the Jupyterhub config c.Authenticator.admin_users
as it is -, a user named admin
can access the hub with admin rights. If you use the default NativeAuthenticator
as authenticator, youc must register the user admin
with a password of your choice first before login in.
If you use a different authenticator, you might want to set a different user as initial admin user as well, for example in case of using oauth you want to set c.Authenticator.admin_users
to a username returned by the oauth login.
MLHub is based on SSH Proxy. Check out SSH Proxy for ssh-related configurations. Here are the additional environment variables for the hub:
Variable | Description | Default |
---|---|---|
HUB_NAME | In Docker-local mode, the container will be (re-)named based on the value of this environment variable. All resources created by the hub will take this name into account. Hence, you can have multiple hub instances running without any naming conflicts. Further, we let the workspace containers connect to the hub not via its docker id but its docker name. This way, the workspaces can still connect to the hub in case it was deleted and re-created (for example when the hub was updated). The value must be DNS compliant and must be between 1 and 5 characters long. | mlhub |
EXECUTION_MODE | Defines in which execution mode the hub is running in. Value is one of [docker | k8s] | local |
CLEANUP_INTERVAL_SECONDS | Interval in which expired and not-used resources are deleted. Set to -1 to disable the automatic cleanup. For more information, see Section Cleanup Service. | 3600 |
SSL_ENABLED | Enable SSL. If you don't provide an ssl certificate as described in Section "Enable SSL/HTTPS", certificates will be generated automatically. As this auto-generated certificate is not signed, you have to trust it in the browser. Without ssl enabled, ssh access won't work as the container uses a single port and has to tell https and ssh traffic apart. | false |
START_SSH | Start the sshd process which is used to tunnel ssh to the workspaces. | true |
START_NGINX | Whether or not to start the nginx proxy. If the Hub should be used without additional tool routing to workspaces, this could be disabled. SSH port 22 would need to be published separately then. This option is built-in to work with zero-to-mlhub-k8s | true |
START_JHUB | Start the Jupyterhub hub. This option is built-in to work with zero-to-mlhub-k8s, where the image is also used as the CHP image. | true |
START_CHP | Start the Jupyterhub proxy process separately (The hub should not start the proxy itself, which can be configured via the Jupyterhub config file. This option is built-in to work with zero-to-mlhub-k8s, where the image is also used as the Configurable-Http-Proxy (CHP) image. Additional arguments to the chp-start command can be passed to the container by passing an environment variable ADDITIONAL_ARGS, e.g. --env ADDITIONAL_ARGS="--ip=0.0.0.0 --api-ip=0.0.0.0". | false |
βΉοΈ Via the START_* environment variables, you can define what is started within the container. It's like this since the mlhub image is used in our Kubernetes setup for both, the hub and the proxy container. We did not want to break those functionalities into different images for now.
Jupyterhub itself is configured via a config.py
file. In case of MLHub, a default config file is stored under /resources/jupyterhub_config.py
. If you want to override settings or set extra ones, you can put another config file under /resources/jupyterhub_user_config.py
. Following settings should probably not be overriden:
c.Spawner.environment
- we set default variables there. Instead of overriding it, you can add extra variables to the existing dict, e.g. viac.Spawner.environment["myvar"] = "myvalue"
.c.DockerSpawner.prefix
andc.DockerSpawner.name_template
- if you change those, check whether your SSH environment variables permit those names a target. Also, think about settingc.Authenticator.username_pattern
to prevent a user having a username that is also a valid container name.- If you override ip and port connection settings, make sure to use Docker images that can handle those.
To make modifications to the config in the Kubernetes setup, checkout the documentation for Zero to JupyterHub with Kubernetes. Our hub is compatible with their approach and so you can pass a config.yaml to the helm command to set values for the Jupyterhub config. We modified a few default values compared to the original repository. This file contains the default values for the helm deployment. The passed config is used by the Jupyterhub config, which we load subsequently to the Jupyterhub config you find in this repo. Hence, the "Zero to JupyterHub with Kubernetes" config overrides the above described default config as it is loaded after our default config file. In short what happens: This repo's hub config is loaded, then the "Zero to JupyterHub with Kubernetes" config, where values can be modified via a config.yaml.
MLHub will start in HTTP mode by default. Note that in HTTP mode, the ssh tunnel feature does not work.
You can activate ssl via the environment variable SSL_ENABLED
. If you don't provide a certificate, it will generate one during startup. This is to make routing SSH connections possible as we use nginx to handle HTTPS & SSH on the same port.
Details (click to expand...)
If you have an own certificate, mount the certificate and key files as cert.crt
and cert.key
, respectively, as read-only at /resources/ssl
, so that the container has access to /resources/ssl/cert.crt
and /resources/ssl/cert.key
.
We override DockerSpawner and KubeSpawner for Docker and Kubernetes, respectively. We do so to add convenient labels and environment variables. Further, we return a custom option form to configure the resouces of the workspaces.
- We create a separate Docker network for each user, which means that (named) workspaces of the same user can see each other but workspaces of different users cannot see each other. Doing so adds another security layer in case a user starts a service within the own workspace and does not properly secure it.
- Create / delete services for a workspace, so that the hub can access them via Kubernetes DNS.
The ML Hub project is maintained by @raethlein and @LukasMasuch. Please understand that we won't be able to provide individual support via email. We also believe that help is much more valuable if it's shared publicly so that more people can benefit from it.
Type | Channel |
---|---|
π¨ Bug Reports | |
π Feature Requests | |
π©βπ» Usage Questions | |
π― General Discussion |
We have the three following scenarios in mind for the hub and want to point them out as a guideline. These three scenarios are thought of as an inspiration and are based on the default configuration by using native-authenticator as the hub authenticator. If you start the hub with a different authenticator or change other settings, you might want to or have to do things differently.
In this scenario, the idea is that just the admin user exists and can access the hub. The admin user then creates workspaces and distributes them to users.
Go to the admin panel (1) and create a new user (2). You can then start the standard workspace for that user or create a new workspace (see second image). Via the ssh access button (3), you can send the user a command to connect to the started workspace via ssh. For more information about the ssh-feature in the workspace, checkout this documentation section. If you created a workspace for another user, it might be necessary to click access on the workspace and authorize once per user to be able to use the ssh-access button.
Give also non-admin users the permission to create named workspaces.
To give users access, the admin just has to authorize registered users.
Users can login and get a default workspace. No additional workspaces can be created.
To let users login and get a default workspace but not let them create new servers, just set the config option c.JupyterHub.allow_named_servers
to False
when starting the hub. Note that this also disables the ability for starting named servers for the admin. Currently, the workaround would be to have a second hub container just for the admin.
When named servers are allowed and the hub is started with the default config, you can create named servers. When doing so, you can set some configurations for the new workspace, such as resource limitations or mounting GPUs. Mounting GPUs is not possible in Kuberntes mode currently. The "Days to live" flag is purely informational currently and can be seen in the admin view; it should help admins to keep an overview of workspaces.
JupyterHub was originally not created with Docker or Kubernetes in mind, which can result in unfavorable scenarios such as that containers are stopped but not deleted on the host. Furthermore, our custom spawners might create some artifacts that should be cleaned up as well. MLHub contains a cleanup service that is started as a JupyterHub service inside the hub container. It can be accessed as a REST-API by an admin, but it is also triggered automatically every X timesteps when not disabled (see config for CLEANUP_INTERVAL_SECONDS
). The service enhances the JupyterHub functionality with regards to the Docker and Kubernetes world. "Containers" is hereby used interchangeably for Docker containers and Kubernetes pods.
The service has two endpoints which can be reached under the Hub service url /services/cleanup-service/*
with admin permissions.
-
GET /services/cleanup-service/users
: This endpoint is currently doing anything only in Docker-local mode. There, it will check for resources of deleted users, so users who are not in the JupyterHub database anymore, and delete them. This includes containers, networks, and volumes. This is done by looking for labeled Docker resources that point to containers started by hub and belonging to the specific users. -
GET /services/cleanup-service/expired
: When starting a named workspace, an expiration date can be assigned to it. This endpoint will delete all containers that are expired. The respective named server is deleted from the JupyterHub database and also the Docker/Kubernetes resource is deleted.
- Pull requests are encouraged and always welcome. Read
CONTRIBUTING.md
and check out help-wanted issues. - Submit github issues for any feature enhancements, bugs, or documentation problems.
- By participating in this project you agree to abide by its Code of Conduct.
Licensed Apache 2.0. Created and maintained with β€οΈ by developers from SAP in Berlin.