클라이언트 라이브러리 빠른 시작

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 샘플 브라우저를 참조하세요.