GKE Autopilot 是否默认管理自动扩缩?
Does GKE Autopilot manages autoscaling by default?
早上好。我正在使用新的 Google Cloud Kubernetes Engine 的 Autopilot 模式进行一些测试。我知道它会自动执行很多机器资源的管理,但我不确定它会自动执行哪些操作。它只关心配置我在 PodSpec 中设置的硬件资源吗?或者它是否也关心根据流量强度增加和减少我拥有的容器数量?
我来自云运行,所以,归根结底,我的主要问题是:现在,有了GKE Autopilot,当流量强度增加时,我是否需要为它做些什么来创建新的容器实例还是全部自动管理?使用autopilot时是否需要设置HPA、VPA等autoscaler技术?
对于 GKE 自动驾驶仪,您需要创建 HPA 和 VPA 配置
GKE autopilot 默认会对节点进行缩放
您可以在以下位置阅读更多信息:https://cloud.google.com/kubernetes-engine/docs/concepts/autopilot-overview#comparison
Scaling Pre-configured: Autopilot handles all the scaling and
configuring of your nodes.
Default: You configure Horizontal pod autoscaling (HPA) You configure
Vertical Pod autoscaling (VPA)
Do I need to set HPA, VPA and other autoscaler technologies when using
autopilot?
Autoscaler 不是必需的,因为它默认由 GKE 管理,并将根据要求缩放节点。
早上好。我正在使用新的 Google Cloud Kubernetes Engine 的 Autopilot 模式进行一些测试。我知道它会自动执行很多机器资源的管理,但我不确定它会自动执行哪些操作。它只关心配置我在 PodSpec 中设置的硬件资源吗?或者它是否也关心根据流量强度增加和减少我拥有的容器数量?
我来自云运行,所以,归根结底,我的主要问题是:现在,有了GKE Autopilot,当流量强度增加时,我是否需要为它做些什么来创建新的容器实例还是全部自动管理?使用autopilot时是否需要设置HPA、VPA等autoscaler技术?
对于 GKE 自动驾驶仪,您需要创建 HPA 和 VPA 配置
GKE autopilot 默认会对节点进行缩放
您可以在以下位置阅读更多信息:https://cloud.google.com/kubernetes-engine/docs/concepts/autopilot-overview#comparison
Scaling Pre-configured: Autopilot handles all the scaling and configuring of your nodes.
Default: You configure Horizontal pod autoscaling (HPA) You configure Vertical Pod autoscaling (VPA)
Do I need to set HPA, VPA and other autoscaler technologies when using autopilot?
Autoscaler 不是必需的,因为它默认由 GKE 管理,并将根据要求缩放节点。