다음을 통해 공유


CLI를 사용하여 직접 연결 모드에서 Azure Arc 데이터 컨트롤러 만들기

이 문서에서는 직접 연결 모드에서 Azure CLI를 사용하여 Azure Arc 데이터 컨트롤러를 만드는 방법을 설명합니다.

필수 조건 완료

시작하기 전에 데이터 컨트롤러 배포 - 직접 연결 모드 - 필수 조건에서 필수 조건을 완료 했는지 확인합니다.

Arc 데이터 컨트롤러 배포

다음은 직접 연결 모드에서 Azure Arc 데이터 컨트롤러를 만드는 단계입니다.

  1. Azure Arc 지원 데이터 서비스 확장 만들기
  2. 사용자 지정 위치를 만듭니다.
  3. 데이터 컨트롤러를 만듭니다.

다음과 같이 Arc 데이터 컨트롤러 확장, 사용자 지정 위치 및 Arc 데이터 컨트롤러를 모두 하나의 명령으로 만듭니다.

## variables for Azure subscription, resource group, cluster name, location, extension, and namespace.
export resourceGroup=<Your resource group>
export clusterName=<name of your connected Kubernetes cluster>
export customLocationName=<name of your custom location>

## variables for logs and metrics dashboard credentials
export AZDATA_LOGSUI_USERNAME=<username for Kibana dashboard>
export AZDATA_LOGSUI_PASSWORD=<password for Kibana dashboard>
export AZDATA_METRICSUI_USERNAME=<username for Grafana dashboard>
export AZDATA_METRICSUI_PASSWORD=<password for Grafana dashboard>

릴리스된 프로필을 사용하여 Azure Arc 데이터 컨트롤러 배포

az arcdata dc create --name <name> -g ${resourceGroup} --custom-location ${customLocationName} --cluster-name ${clusterName} --connectivity-mode direct --profile-name <the-deployment-profile> --auto-upload-metrics true --auto-upload-logs true --storage-class <storageclass>

# Example
az arcdata dc create --name arc-dc1 --resource-group my-resource-group ----custom-location cl-name --connectivity-mode direct --profile-name azure-arc-aks-premium-storage  --auto-upload-metrics true --auto-upload-logs true --storage-class mystorageclass

사용자 지정 구성 템플릿을 사용하여 Azure Arc 데이터 컨트롤러를 만들려면 사용자 지정 구성 프로필 만들기에 설명된 단계를 따르고 다음과 같이 파일 경로를 제공합니다.

az arcdata dc create --name  -g ${resourceGroup} --custom-location ${customLocationName} --cluster-name ${clusterName} --connectivity-mode direct --path ./azure-arc-custom --auto-upload-metrics true --auto-upload-logs true

# Example
az arcdata dc create --name arc-dc1 --resource-group my-resource-group ----custom-location cl-name --connectivity-mode direct --path ./azure-arc-custom  --auto-upload-metrics true --auto-upload-logs true

Azure Arc 데이터 컨트롤러 배포 상태 모니터

클러스터에서 Arc 데이터 컨트롤러의 배포 상태는 다음과 같이 모니터링할 수 있습니다.

kubectl get datacontrollers --namespace arc

Azure Arc 지원 PostgreSQL 서버 만들기

Azure Arc 지원 SQL Managed Instance 만들기