3

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?

Jason Ye
  • 13,710
  • 2
  • 16
  • 25
jochen.vg
  • 302
  • 2
  • 7

1 Answers1

3

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"
    }
},
4c74356b41
  • 69,186
  • 6
  • 100
  • 141