创建 GKE 节点池会导致错误 429:操作过多:集群“testcluster”达到并发操作配额 1

创建 GKE 节点池会导致错误 429:操作过多:集群“testcluster”达到并发操作配额 1

使用 Terraform 创建节点池时,我们看到以下错误

2023-06-29 15:49:25,017 - Error: error creating NodePool: googleapi: Error 429: Too many operations: cluster "testcluster" hits the concurrent operations quota 1, please try again later.

2023-06-29 15:49:25,018 - 详细信息:2023-06-29 15:49:25,018 - [2023-06-29 15:49:25,018 - {2023-06-29 15:49:25,018 - “@type”:“type.googleapis.com/google.rpc.RequestInfo”,2023-06-29 15:49:25,018 - “requestId”:“0xd57aa0cb25cb8889”2023-06-29 15:49:25,018 - } 2023-06-29 15:49:25,018 - ] 2023-06-29 15:49:25,018 -,rateLimitExceeded 2023-06-29 15:49:25,018 -

答案1

同样的问题,我正在 europe-west9 区域部署一个具有 3 个节点池的 GKE 集群。其中 2 个部署良好,但使用第三个时出现以下错误:

│ 错误:创建 NodePool 时出错:googleapi:错误 429:操作过多:集群“gke-cluster”达到并发操作配额 1,请稍后重试。

│ 详细信息: │ [ │ { │ “@type”:“type.googleapis.com/google.rpc.RequestInfo”, │ “requestId”:“0xd6d5bb211b74b0a9” │ } │ ] │,rateLimitExceeded │ │ 使用 module.gke[“myproject”].google_container_node_pool.primary_nodes[“node-pool-3”],│ 在 modules/gke/main.tf 第 86 行,在资源“google_container_node_pool” “primary_nodes”中: │ 86:资源“google_container_node_pool” “primary_nodes”{

相关内容