地形 | GCP | google_container_node_pool |节点计数
Posted
技术标签:
【中文标题】地形 | GCP | google_container_node_pool |节点计数【英文标题】:Terraform | GCP | google_container_node_pool | node_count 【发布时间】:2021-10-26 16:25:33 【问题描述】:谁能解释一下下面的node_count
Terraform 参数(来自here)?
node_count
- (可选)每个实例组的节点数。该字段可用于更新每个实例组的节点数,但不应与autoscaling
一起使用。
“每个实例组”是什么意思?
为什么node_count
不能与autoscaling
一起使用?
有没有办法控制资源google_container_node_pool
的自动缩放触发器?
【问题讨论】:
【参考方案1】:不是每个“实例”,而是每个“实例组”。如果您来自 AWS,则类似于 auto scaling group。你可以在GCP's documentation for instance groups阅读更多相关信息。
您基本上可以在节点池中的静态实例数量(通过使用node_count
parameter)或允许节点池自动扩展和设置节点池的最小和最大大小之间进行选择autoscaling.min_node_count
和 autoscaling.max_node_count
参数。
使用容器节点池,关键是您运行它是为了通过GKE 为在 Kubernetes 上运行的容器提供计算。在 Kubernetes 中,cluster autoscaler 负责扩展计算以支持正在运行或挂起的容器的需求,从而扩展节点池的大小。
【讨论】:
以上是关于地形 | GCP | google_container_node_pool |节点计数的主要内容,如果未能解决你的问题,请参考以下文章