Python 用 Azure ライブラリ (SDK) を使用した Azure Managed Disks の使用

Azure Managed Disks は、Azure Virtual Machines と Azure VMware Solution で使用するように設計された、高パフォーマンスで耐久性のあるブロック ストレージです。 Azure Managed Disks は、ストレージ アカウントを直接操作しなくても、ディスク管理の簡素化、スケーラビリティの向上、セキュリティの強化、スケーリングの改善を実現します。 詳細については、Azure Managed Disks に関する記事をご覧ください。

既存の仮想マシンの Managed Disks を管理するには、azure-mgmt-compute ライブラリを使用します。

azure-mgmt-compute ライブラリを使用した仮想マシンの作成方法については、「例 - 仮想マシンを作成する」をご覧ください。

この記事のコード例では、azure-mgmt-compute ライブラリを使用してマネージド ディスクで一般的なタスクを実行する方法を示します。 これらのコードは、独自に作成するコードに組み込むように設計されており、そのまま実行することはできません。 コード内で azure.mgmt.compute ComputeManagementClient のインスタンスを作成して例を実行する方法については、「例 - 仮想マシンを作成する」を参照してください。

azure-mgmt-compute ライブラリの使用方法を全体に渡って示した例については、GitHub でコンピューティング用の Azure SDK for Python サンプルを参照してください。

スタンドアロンの管理ディスク

スタンドアロンのマネージド ディスクは、次のセクションに示すように、多様な方法で作成できます。

空のマネージド ディスクを作成する

from azure.mgmt.compute.models import DiskCreateOption

poller = compute_client.disks.begin_create_or_update(
    'my_resource_group',
    'my_disk_name',
    {
        'location': 'eastus',
        'disk_size_gb': 20,
        'creation_data': {
            'create_option': DiskCreateOption.empty
        }
    }
)
disk_resource = poller.result()

Blob Storage からマネージド ディスクを作成する

マネージド ディスクは、BLOB として保存されている仮想ハード ディスク (VHD) から作成されます。

from azure.mgmt.compute.models import DiskCreateOption

poller = compute_client.disks.begin_create_or_update(
    'my_resource_group',
    'my_disk_name',
    {
        'location': 'eastus',
        'creation_data': {
            'create_option': DiskCreateOption.IMPORT,
            'storage_account_id': '/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/Microsoft.Storage/storageAccounts/<storage-account-name>',
            'source_uri': 'https://<storage-account-name>.blob.core.windows.net/vm-images/test.vhd'
        }
    }
)
disk_resource = poller.result()

Blob Storage からマネージド ディスク イメージを作成する

マネージド ディスク イメージは、BLOB として保存されている仮想ハード ディスク (VHD) から作成されます。

from azure.mgmt.compute.models import OperatingSystemStateTypes, HyperVGeneration

poller = compute_client.images.begin_create_or_update(
    'my_resource_group',
    'my_image_name',
    {
        'location': 'eastus',
        'storage_profile': {
           'os_disk': {
              'os_type': 'Linux',
              'os_state': OperatingSystemStateTypes.GENERALIZED,
              'blob_uri': 'https://<storage-account-name>.blob.core.windows.net/vm-images/test.vhd',
              'caching': "ReadWrite",
           },
        },
        'hyper_v_generation': HyperVGeneration.V2,
    }
)
image_resource = poller.result()

独自のイメージからマネージド ディスクを作成する

from azure.mgmt.compute.models import DiskCreateOption

# If you don't know the id, do a 'get' like this to obtain it
managed_disk = compute_client.disks.get(self.group_name, 'myImageDisk')

poller = compute_client.disks.begin_create_or_update(
    'my_resource_group',
    'my_disk_name',
    {
        'location': 'eastus',
        'creation_data': {
            'create_option': DiskCreateOption.COPY,
            'source_resource_id': managed_disk.id
        }
    }
)

disk_resource = poller.result()

Managed Disks を使用した仮想マシン

特定のディスク イメージの暗黙的なマネージド ディスクを使用して仮想マシンを作成できるため、ユーザーがすべての詳細を指定する必要がなくなります。

マネージド ディスクは、Azure で OS イメージから VM を作成するときに暗黙的に作成されます。 storage_profile パラメーターでは、os_disk は省略可能になっており、仮想マシン作成の必須の前提条件としてストレージ アカウントを作成する必要はありません。

storage_profile = azure.mgmt.compute.models.StorageProfile(
    image_reference = azure.mgmt.compute.models.ImageReference(
        publisher='Canonical',
        offer='UbuntuServer',
        sku='16.04-LTS',
        version='latest'
    )
)

Python 用 Azure 管理ライブラリを使用して仮想マシンを作成する方法を全体に渡って示した例については、「例 - 仮想マシンを作成する」を参照してください。 作成例では、storage_profile パラメーターを使用します。

また、独自のイメージを使用して storage_profile を作成することもできます。

# If you don't know the id, do a 'get' like this to obtain it
image = compute_client.images.get(self.group_name, 'myImageDisk')

storage_profile = azure.mgmt.compute.models.StorageProfile(
    image_reference = azure.mgmt.compute.models.ImageReference(
        id = image.id
    )
)

以前にプロビジョニングしたマネージド ディスクを簡単にアタッチできます。

vm = compute_client.virtual_machines.get(
    'my_resource_group',
    'my_vm'
)
managed_disk = compute_client.disks.get('my_resource_group', 'myDisk')

vm.storage_profile.data_disks.append({
    'lun': 12, # You choose the value, depending of what is available for you
    'name': managed_disk.name,
    'create_option': DiskCreateOptionTypes.attach,
    'managed_disk': {
        'id': managed_disk.id
    }
})

async_update = compute_client.virtual_machines.begin_create_or_update(
    'my_resource_group',
    vm.name,
    vm,
)
async_update.wait()

Managed Disks を使用する Virtual Machines スケール セット

管理ディスクを使用する前は、スケール セットに含めるすべての VM に対してストレージ アカウントを手動で作成し、その後、リスト パラメーター vhd_containers を使用してすべてのストレージ アカウント名をスケール セットの RestAPI に渡す必要がありました。

Azure Managed Disks ではストレージ アカウントを管理する必要がないため、Virtual Machine Scale Setsstorage_profile は、VM の作成で使用したものとまったく同じにすることができます。

'storage_profile': {
    'image_reference': {
        "publisher": "Canonical",
        "offer": "UbuntuServer",
        "sku": "16.04-LTS",
        "version": "latest"
    }
},

サンプル全体は次のとおりです。

naming_infix = "PyTestInfix"

vmss_parameters = {
    'location': self.region,
    "overprovision": True,
    "upgrade_policy": {
        "mode": "Manual"
    },
    'sku': {
        'name': 'Standard_A1',
        'tier': 'Standard',
        'capacity': 5
    },
    'virtual_machine_profile': {
        'storage_profile': {
            'image_reference': {
                "publisher": "Canonical",
                "offer": "UbuntuServer",
                "sku": "16.04-LTS",
                "version": "latest"
            }
        },
        'os_profile': {
            'computer_name_prefix': naming_infix,
            'admin_username': 'Foo12',
            'admin_password': 'BaR@123!!!!',
        },
        'network_profile': {
            'network_interface_configurations' : [{
                'name': naming_infix + 'nic',
                "primary": True,
                'ip_configurations': [{
                    'name': naming_infix + 'ipconfig',
                    'subnet': {
                        'id': subnet.id
                    }
                }]
            }]
        }
    }
}

# Create VMSS test
result_create = compute_client.virtual_machine_scale_sets.begin_create_or_update(
    'my_resource_group',
    'my_scale_set',
    vmss_parameters,
)
vmss_result = result_create.result()

Managed Disks を使用したその他の操作

マネージド ディスクのサイズ変更を行う

managed_disk = compute_client.disks.get('my_resource_group', 'myDisk')
managed_disk.disk_size_gb = 25

async_update = self.compute_client.disks.begin_create_or_update(
    'my_resource_group',
    'myDisk',
    managed_disk
)
async_update.wait()

マネージド ディスクのストレージ アカウントの種類を更新する

from azure.mgmt.compute.models import StorageAccountTypes

managed_disk = compute_client.disks.get('my_resource_group', 'myDisk')
managed_disk.account_type = StorageAccountTypes.STANDARD_LRS

async_update = self.compute_client.disks.begin_create_or_update(
    'my_resource_group',
    'myDisk',
    managed_disk
)
async_update.wait()

BLOB ストレージからイメージを作成する。

async_create_image = compute_client.images.create_or_update(
    'my_resource_group',
    'myImage',
    {
        'location': 'eastus',
        'storage_profile': {
            'os_disk': {
                'os_type': 'Linux',
                'os_state': "Generalized",
                'blob_uri': 'https://<storage-account-name>.blob.core.windows.net/vm-images/test.vhd',
                'caching': "ReadWrite",
            }
        }
    }
)
image = async_create_image.result()

現在仮想マシンにアタッチされているマネージド ディスクのスナップショットを作成する

managed_disk = compute_client.disks.get('my_resource_group', 'myDisk')

async_snapshot_creation = self.compute_client.snapshots.begin_create_or_update(
        'my_resource_group',
        'mySnapshot',
        {
            'location': 'eastus',
            'creation_data': {
                'create_option': 'Copy',
                'source_uri': managed_disk.id
            }
        }
    )
snapshot = async_snapshot_creation.result()

関連項目