地形 |控制点 | google_container_node_pool | node_count
Terraform | GCP | google_container_node_pool | node_count
谁能解释一下下面的 node_count
Terraform 参数(来自 here)?
node_count
-(可选)每个实例组的节点数。此字段可用于更新每个实例组的节点数,但不应与 autoscaling
.
一起使用
“每个实例组”是什么意思?
为什么 node_count
不能与 autoscaling
一起使用?
有没有办法控制资源 google_container_node_pool
的自动缩放触发器?
不是按“实例”而是按“实例组”。如果您来自 AWS,它就像 auto scaling group. You can read more about it in GCP's documentation for instance groups.
您基本上可以在节点池中的静态实例数量之间进行选择(通过使用 node_count
parameter) or to allow the node pool to automatically scale and set the min and max size of the node pool via the autoscaling.min_node_count
and autoscaling.max_node_count
参数。
使用容器节点池的关键是您 运行 通过 GKE. In Kubernetes, the cluster autoscaler 在 Kubernetes 上为容器 运行 提供计算,负责扩展计算以支持来自运行 或待处理的容器,这将扩展节点池的大小。
谁能解释一下下面的 node_count
Terraform 参数(来自 here)?
node_count
-(可选)每个实例组的节点数。此字段可用于更新每个实例组的节点数,但不应与 autoscaling
.
“每个实例组”是什么意思?
为什么
node_count
不能与autoscaling
一起使用?有没有办法控制资源
google_container_node_pool
的自动缩放触发器?
不是按“实例”而是按“实例组”。如果您来自 AWS,它就像 auto scaling group. You can read more about it in GCP's documentation for instance groups.
您基本上可以在节点池中的静态实例数量之间进行选择(通过使用 node_count
parameter) or to allow the node pool to automatically scale and set the min and max size of the node pool via the autoscaling.min_node_count
and autoscaling.max_node_count
参数。
使用容器节点池的关键是您 运行 通过 GKE. In Kubernetes, the cluster autoscaler 在 Kubernetes 上为容器 运行 提供计算,负责扩展计算以支持来自运行 或待处理的容器,这将扩展节点池的大小。