24.4.4. Microsoft Azure 스토리지를 사용하도록 OpenShift Container Platform 구성
OpenShift Container Platform은 영구 볼륨 메커니즘을 사용하여 Microsoft Azure 스토리지를 사용할 수 있습니다. OpenShift Container Platform은 리소스 그룹에 디스크를 생성하고 올바른 인스턴스에 디스크를 연결합니다.
절차
다음
스토리지 클래스
는 Ansible 인벤토리의 openshift_cloudprovider_kind=azure 및
변수를 사용하여 설치 시 Azure 클라우드 공급자를 구성할 때 생성됩니다.openshift_cloud_provider_azure
$ oc get --export storageclass azure-standard -o yaml apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: annotations: storageclass.kubernetes.io/is-default-class: "true" creationTimestamp: null name: azure-standard parameters: kind: Shared storageaccounttype: Standard_LRS provisioner: kubernetes.io/azure-disk reclaimPolicy: Delete volumeBindingMode: Immediate
OpenShift Container Platform 및 Microsoft Azure 통합을 활성화하는 데 Ansible을 사용하지 않은 경우
스토리지 클래스를
수동으로 생성할 수 있습니다. 자세한 내용은 동적 프로비저닝 및 스토리지 클래스 생성 섹션을 참조하십시오.-
현재 기본
스토리지 클래스
종류는공유
되므로 Microsoft Azure 인스턴스에서 관리되지 않는 디스크를 사용해야 합니다.openshift_storageclass_parameters={'kind'를 제공하여 인스턴스에서 관리 디스크를 사용하도록 허용하여 선택적으로 이를 수정할 수 있습니다. 'Managed', 'storageaccounttype': 'Premium_LRS'}
또는openshift_storageclass_parameters={'kind': 'Managed', 'storageaccounttype': 'Standard_LRS'}
설치 시 Ansible 인벤토리 파일의 변수입니다.
Microsoft Azure 디스크는 ReadWriteOnce
액세스 모드이므로 단일 노드에서 볼륨을 읽기-쓰기로 마운트할 수 있습니다. 자세한 내용은 아키텍처 가이드의 액세스 모드 섹션 을 참조하십시오.