池的概念属于 Kubernetes 设计还是仅适用于 Google Cloud?

Concept of pools belongs to Kubernetes design or only for Google Cloud?

我的问题是关于 kuberetes 架构本身的。我目前在 Google Kubernetes Engine 中使用 Kubernetes。我注意到 Google 集群有一个叫做 Pool 的东西,尽管它似乎不是 Kubernetes 文档上的 Pool 概念。它是 Google Kubernetes Engine 独有的吗?

Node Pool resource that you are (I'm assuming) referring to is part of the Kubernetes Engine API -- not to be confused with the actual Kubernetes API. Despite the similar name, Kubernetes and the Kubernetes Engine are different products: The latter is a product for managing Kubernetes clusters and part of the Google Cloud platform, separate from the Kubernetes projects itself and adding its own APIs on top of Kubernetes (like, for example, for managing Node Pools).

供参考,Kubernetes API reference offers a complete list of all resources that are provided by the Kubernetes API itself (which does provide Nodes,但不是 NodePools)。