1

尝试按照本教程在 Google Kubernetes 上设置 jupyterhub 服务器。一切顺利。但是,当我使用 helm 安装 jupyterhub/jupyterhub 映像时,它总是显示 pod 处于待处理状态:

kubectl --namespace=jupyter-server get pod

NAME                     READY     STATUS    RESTARTS   AGE
hub-6dbd4df8b8-nqvnf     0/1       Pending   0          17h
proxy-7bb666576c-fx726   0/2       Pending   0          17h

即使在 17 小时之后。

helm版本与教程2.6.2中的建议相同。我在 kubernetes 集群中使用了 3 个实例。这些实例是否太小?感谢您的任何建议。f1-micro

4

1 回答 1

10

尝试描述 pod 和集群中的节点,以获取有关它们究竟为何仍处于待处理状态的更多信息:

kubectl describe po/hub-6dbd4df8b8-nqvnf -n jupyter-server
kubectl describe po/proxy-7bb666576c-fx726 -n jupyter-server

kubectl describe nodes
于 2018-02-17T21:58:02.690 回答