Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/google-apps-script/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google cloud platform 谷歌自动驾驶仪集群:不可调度的吊舱_Google Cloud Platform_Google Kubernetes Engine - Fatal编程技术网

Google cloud platform 谷歌自动驾驶仪集群:不可调度的吊舱

Google cloud platform 谷歌自动驾驶仪集群:不可调度的吊舱,google-cloud-platform,google-kubernetes-engine,Google Cloud Platform,Google Kubernetes Engine,我在自动驾驶仪集群中创建了一个具有资源/限制的吊舱: Limits: cpu: 500m ephemeral-storage: 1Gi memory: 512Mi Requests: cpu: 500m ephemeral-storage: 1Gi memory: 512Mi 但是根据我读到的内容

我在自动驾驶仪集群中创建了一个具有资源/限制的吊舱:

    Limits:
      cpu:                500m
      ephemeral-storage:  1Gi
      memory:             512Mi
    Requests:
      cpu:                500m
      ephemeral-storage:  1Gi
      memory:             512Mi
但是根据我读到的内容,一切都应该自动配置。我不知道如何向集群添加新节点

  Warning  FailedScheduling   2m39s (x3979 over 4d3h)  gke.io/optimize-utilization-scheduler  0/3 nodes are available: 1 Insufficient memory, 3 Insufficient cpu.
  Normal   NotTriggerScaleUp  85s (x68738 over 4d5h)   cluster-autoscaler                     pod didn't trigger scale-up (it wouldn't fit if a new node is added): 2 node(s) didn't match node selector
Google控制台显示可能的操作:

Increase maximum size limit for autoscaling in one or more node pools that have autoscaling enabled.

但这是自动驾驶仪,根据文档,它应该是自动完成的,我根本做不到。非常奇怪。

您是否尝试过只设置资源请求而不设置限制?自动驾驶仪将自动将限制设置为等于请求(并且您不能有限制>请求)。您可以共享服务YAML描述吗?您可以共享以下命令的输出:
kubectl get all--all namespace
?如果你在这里关注同样的问题,可能会有助于更好地理解这件事!你找到解决方法了吗?@Nahuel我和OP有同样的问题,但当我运行该命令时,它会出现错误:“无法连接到服务器:拨打tcp 172.16.251.210:443:I/o超时”。。。其他尝试也以同样的方式失败。即使是kubectl版本也会失败。。。有什么想法吗?