1단계: API 사용 설정

Apigee Hybrid를 사용하려면 특정 Google Cloud 서비스 API가 필요합니다. 이 단계에서는 설치 플랫폼에 필요한 API를 사용 설정합니다.

gcloud를 사용하여 다음 단계에 설명된 대로 필요한 API를 사용 설정합니다. 원하는 경우 Cloud 콘솔을 사용하여 API를 사용 설정할 수 있습니다.

  1. 기본 요건을 완료하고 로컬 셸에 gcloud CLI가 설치되어 있는지 확인합니다.
    gcloud --help
  2. PROJECT_ID 환경 변수를 만듭니다. 여기서 값은 Apigee Hybrid에 사용할 Google Cloud 프로젝트의 ID입니다. 프로젝트 ID는 Google Cloud에서 프로젝트를 다른 모든 프로젝트와 구분하는 데 사용되는 고유한 문자열입니다. 필요한 경우 프로젝트 ID 찾기를 참조하세요.
    export PROJECT_ID=YOUR_PROJECT_ID
  3. API를 사용 설정하기 위한 명령어를 보려면 원하는 설치의 탭을 선택합니다.

    OpenShift

    OpenShift에서 클러스터를 실행할 경우 다음 명령어를 실행하여 API를 사용 설정합니다.

    gcloud services enable \
        apigee.googleapis.com \
        apigeeconnect.googleapis.com \
        cloudapis.googleapis.com \
        cloudresourcemanager.googleapis.com \
        compute.googleapis.com \
        dns.googleapis.com \
        iam.googleapis.com \
        iamcredentials.googleapis.com \
        pubsub.googleapis.com \
        servicemanagement.googleapis.com \
        serviceusage.googleapis.com \
        storage-api.googleapis.com \
        storage-component.googleapis.com  --project $PROJECT_ID
    

    기타 플랫폼

    다음 플랫폼 중 하나에서 클러스터를 실행할 경우 다음 명령어를 실행하여 필요한 API를 사용 설정합니다.

    • GKE On-Prem
    • 베어메탈용 Anthos
    • AKS
    • GKE on AWS
    • EKS
    gcloud services enable \
        apigee.googleapis.com \
        apigeeconnect.googleapis.com \
        cloudresourcemanager.googleapis.com \
        pubsub.googleapis.com  --project $PROJECT_ID

    Google Cloud 기반 GKE

    Google Kubernetes Engine(GKE)에서 클러스터를 실행할 경우 다음 명령어를 실행하여 필요한 API를 사용 설정합니다.

      gcloud services enable \
          apigee.googleapis.com \
          apigeeconnect.googleapis.com \
          cloudresourcemanager.googleapis.com \
          compute.googleapis.com \
          container.googleapis.com \
          pubsub.googleapis.com --project $PROJECT_ID
      
  4. (선택사항) 필요한 API가 사용 설정되어 있는지 확인하려면 다음 명령어를 실행합니다. 필수 API가 반환된 목록에 있으면 사용 설정된 것입니다.
    gcloud services list --project $PROJECT_ID

다음 단계

2단계: 조직 만들기로 이동하기