หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
Issue: 'Image Not Found' exception when trying to scale up - increase VMSS instances for a Service Fabric cluster.
Cause: ARM template should have this, which instructs to use the latest version of the image. If the vmImageVersion is hard coded, then they may run into 'Image Not Found' problem.
"imageReference": {
"publisher": "MicrosoftWindowsServer",
"offer": "WindowsServer",
"sku": "2012-R2-Datacenter",
"version": "[parameters('vmImageVersion')]"
"vmImageVersion": {
"type": "string",
"defaultValue": "latest"