简体   繁体   English

Google Kubernetes引擎上的Pod正在等待?

[英]Pods on google kubernetes engine pending?

Trying to set up the jupyterhub server on Google Kubernetes following this tutorial . 按照本教程尝试在Google Kubernetes上设置jupyterhub服务器。 Everything went through fine. 一切顺利。 But when I install jupyterhub/jupyterhub image with helm, it's always showing the pods are pending: 但是,当我安装带有头盔的jupyterhub / jupyterhub图像时,它总是显示吊舱正在等待:

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

Even after 17 hours. 即使经过17个小时。

The helm version is 2.6.2 as suggested in the tutorial . 如本教程中所建议, helm版本为2.6.2 And I am using 3 f1-micro instances in the kubernetes cluster. 我正在kubernetes集群中使用3个f1-micro实例。 Are these instances too small? 这些实例是否太小? Thanks for any advice. 感谢您的任何建议。

Try describing the pod, and the describing the nodes in the cluster, to get more info about why exactly they're still pending: 尝试描述pod并描述集群中的节点,以获取有关为什么它们仍然挂起的更多信息:

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

kubectl describe nodes

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM