如何在不使用Helm Chart的情况下将jupyterhub部署到kubernetes?

问题描述 投票:0回答:1

由于某些原因,我无法在房屋内部使用here给出的舵图。有没有参考,我们该怎么做?

kubernetes jupyter-notebook devops kubernetes-helm jupyterhub
1个回答
1
投票

是的,您可以在不使用Helm的情况下部署JupyterHub。

按照以下教程进行:Jupyterhub Github Installation page

但是,

创建Helm安装是为了使安装过程中的大部分时间自动化。

  • 我知道您不能在内部维护外部Helm存储库,但是您可以手动下载该软件包并进行安装。
  • 与手动创建整个设置相比,这确实会更容易和更快。

TL; DR:唯一与From Documentation不同的地方是此命令:

helm upgrade --install jhub jupyterhub-0.8.2.tgz \
--namespace jhub \ 
--version=0.8.2 \ 
--values config.yaml

下面是我对本地安装的完整复制。

user@minikube:~/jupyterhub$ openssl rand -hex 32
e278e128a9bff352becf6c0cc9b029f1fe1d5f07ce6e45e6c917c2590654e9ee

user@minikube:~/jupyterhub$ cat config.yaml 
proxy:
  secretToken: "e278e128a9bff352becf6c0cc9b029f1fe1d5f07ce6e45e6c917c2590654e9ee"

user@minikube:~/jupyterhub$ wget https://jupyterhub.github.io/helm-chart/jupyterhub-0.8.2.tgz
2020-02-10 13:25:31 (60.0 MB/s) - ‘jupyterhub-0.8.2.tgz’ saved [27258/27258]

user@minikube:~/jupyterhub$ helm upgrade --install jhub jupyterhub-0.8.2.tgz \
--namespace jhub \ 
--version=0.8.2 \ 
--values config.yaml

Release "jhub" does not exist. Installing it now.
NAME: jhub
LAST DEPLOYED: Mon Feb 10 13:27:20 2020
NAMESPACE: jhub
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
Thank you for installing JupyterHub!
You can find the public IP of the JupyterHub by doing:
 kubectl --namespace=jhub get svc proxy-public
It might take a few minutes for it to appear!

user@minikube:~/jupyterhub$ k get all -n jhub
NAME                         READY   STATUS    RESTARTS   AGE
pod/hub-68d9d97765-ffrz6     0/1     Pending   0          19m
pod/proxy-56694f6f87-4cbgj   1/1     Running   0          19m

NAME                   TYPE           CLUSTER-IP      EXTERNAL-IP   PORT(S)                      AGE
service/hub            ClusterIP      10.96.150.230   <none>        8081/TCP                     19m
service/proxy-api      ClusterIP      10.96.115.44    <none>        8001/TCP                     19m
service/proxy-public   LoadBalancer   10.96.113.131   <pending>     80:31831/TCP,443:31970/TCP   19m

NAME                    READY   UP-TO-DATE   AVAILABLE   AGE
deployment.apps/hub     0/1     1            0           19m
deployment.apps/proxy   1/1     1            1           19m

NAME                               DESIRED   CURRENT   READY   AGE
replicaset.apps/hub-68d9d97765     1         1         0       19m
replicaset.apps/proxy-56694f6f87   1         1         1       19m

NAME                                READY   AGE
statefulset.apps/user-placeholder   0/0     19m

如果您在此过程中遇到任何问题,请告诉我。

© www.soinside.com 2019 - 2024. All rights reserved.