我们如何不使用掌舵图将jupyterhub部署到kubernetes?

时间:2020-02-10 09:42:29

标签: kubernetes jupyter-notebook devops kubernetes-helm jupyterhub

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

1 个答案:

答案 0 :(得分: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

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

相关问题