如何使用REST(或node(API获取GKE节点池的当前大小?
我正在使用运行在集群上的Express应用程序管理我自己的工作池,可以设置池的大小并跟踪setSize操作的成功,但我看不到API可以获取当前节点数。NodePool资源仅包括原始节点计数,而不包括当前计数。我不想在我的一个生产虚拟机上使用gcloud或kubectl。
我可以绕过GKE,尝试使用计算引擎(GCE(API来推断大小,但我还没有研究这种方法。请注意,即使从堆栈驱动程序中也很难获得节点计数。是否有人找到了获得当前节点大小的解决方案?
通过获取与节点池关联的实例组,可以从计算引擎API中检索工作池大小。
const { google } = require('googleapis')
const Compute = require('@google-cloud/compute')
const container = google.container('v1')
const compute = new Compute()
const projectId = 'project-12345'
const zone = 'us-central1-a'
const nodePoolId = 'worker-pool'
const clusterId = 'cluster-name'
async function authorize() {
const auth = new google.auth.GoogleAuth({
scopes: [ 'https://www.googleapis.com/auth/cloud-platform' ],
})
return auth.getClient()
}
const getNodePoolSize = async () => {
const auth = await authorize()
const clusterName = `projects/${projectId}/zones/${zone}/clusters/${clusterId}`
const request = { name: clusterName, auth }
const response = await container.projects.locations.clusters.get(request)
const nodePool = response.data.nodePools.find(({ name }) => name === nodePoolId)
const igName = nodePool.instanceGroupUrls[0].match(/.*/instanceGroupManagers/([a-z0-9-]*)$/)[1]
const instanceGroup = await compute.zone(zone).instanceGroup(igName).get()
return instanceGroup[1 /* 0 is config, 1 is instance */].size
}
请注意,这使用了两种不同的Nodeneneneba API机制。我们可以用google.compute
代替@google-cloud/compute
。此外,这两个API的身份验证方式不同。前者使用authorize()
方法获取客户端,而后者通过环境变量中设置的默认帐户进行身份验证。