โ๏ธJupyterHub
AI/ML with Jupyter on Kubernetes: JupyterHub
Install Helm
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.shUse Helm to deploy JupyterHub
helm repo add jupyterhub https://jupyterhub.github.io/helm-chart/
helm repo updatetouch config.yamlhelm upgrade --cleanup-on-fail \
--install hub jupyterhub/jupyterhub \
--namespace jup \
--create-namespace \
--version=2.0.0 \
--values config.yamlDelete the helm release
Reference
Last updated