MENU

Fun & Interesting

Easy set up of JupyterHub on Kubernetes Using Helm | Docker Desktop

dataEnthusiast 36 2 weeks ago
Video Not Working? Fix It Now

Below are the Steps required for setting up JupyterHub on Kubernetes Cluster using Helm Step 1: • Make Helm aware of JupyterHub Helm Chart Repository so you can install JupyterHub chart from it ○ helm repo add jupyterhub https://hub.jupyter.org/helm-chart/ ○ helm repo update Step 2: • Install JupyterHub using Helm ○ helm upgrade --cleanup-on-fail --install jupyterhub jupyterhub/jupyterhub --namespace jupyterhub --create-namespace --version=3.3.0 --values config.yaml Step 3: • Retrieve the Helm chart values (default configuration file for jupyterhub deployment) ○ helm show --namespace jupyterhub --version=3.3.0 values jupyterhub/jupyterhub ${angle_bracket} ./values.yaml Step 4: • Generate random Hex token ○ openssl rand -hex 32 Step 5: • Update the config.yaml file with the token after update, the upgrade the jupyter hub ○ helm upgrade --cleanup-on-fail jupyterhub jupyterhub/jupyterhub --values config.yaml --namespace jupyterhub --version=3.3.0

Comment