客户端库快速入门

使用 Node.js GKE 集群管理员客户端库。

代码示例

Node.js

如需向 GKE 进行身份验证,请设置应用默认凭据。 如需了解详情,请参阅为本地开发环境设置身份验证

const container = require('@google-cloud/container');

// Create the Cluster Manager Client
const client = new container.v1.ClusterManagerClient();

async function quickstart() {
  const zone = 'us-central1-a';
  const projectId = await client.getProjectId();
  const request = {
    projectId: projectId,
    zone: zone,
  };

  const [response] = await client.listClusters(request);
  console.log('Clusters: ', response);
}
quickstart();

后续步骤

如需搜索和过滤其他 Google Cloud 产品的代码示例,请参阅 Google Cloud 示例浏览器