jochen.vg
jochen.vg

Reputation: 302

Premium (SSD) managed disks for Azure VM Scale Set

I've been trying to get Premium managed disks (SSD) enabled for Azure Virtual Machine Scale Sets, but I don't seem to get it setup.

Scaleset config

Standard (HHD) seems to work for managed disks.

Anybody got this working?

Upvotes: 3

Views: 1011

Answers (1)

4c74356b41
4c74356b41

Reputation: 72171

Just pick SSD capable VM's when creating the VMSS. enter image description here

The VMSS portal page would say that its still using HDD, but if you check the actual resource properties it would say:

"storageProfile": {
    "osDisk": {
        "createOption": "FromImage",
        "caching": "ReadWrite",
        "managedDisk": {
            "storageAccountType": "Premium_LRS"
        }
    },
    "imageReference": {
        "publisher": "MicrosoftWindowsServer",
        "offer": "WindowsServer",
        "sku": "2016-Datacenter",
        "version": "latest"
    }
},

Upvotes: 3

Related Questions