microsoft / azure-vhd-utils

Azure VHD utilities.
Other
96 stars 41 forks source link

osType support? #45

Closed rnesius closed 7 years ago

rnesius commented 7 years ago

For quite some time I've been using the azure-vhd-utils to upload linux images into Azure and create VM deployments against them. But recently I started running into issues. After banging my head against the problem for awhile I finally broke down and submitted a ticket and was told my VM Deployments were failing because the image was flagged in Azure as a "Windows" image.

"properties": { "storageProfile": { "osDisk": { "osType": "Windows", "osState": "Generalized", "blobUri": "https://", "storageAccountType": "Standard_LRS" } }, "provisioningState": 0 }, "location": "westus" })

I'm scratching my head as this used to "just work".... has something changed such that an "osType" flag is necessary now? Sorry if the problem is a misunderstanding on my part...