Azure 图像没有 uri - 无法从中创建自动缩放

Azure image has no uri - Cant create auto scale from it

我已经使用加壳器成功创建了 VM 映像。该实例是安装了 nginx 的 Ubuntu 机器。

现在,当我想启动一个带有负载均衡器和自动缩放的资源组时,我需要使用 URI 引用此图像;但是当我转到 Azure 中的图像时,URI 字段为空。

我如何获得这个 URI,以便我可以使用下面的模板设置我的自动缩放环境?

最好的, 乔纳斯

i need to refer this image using a URI; but when i go to the image in Azure, the URI field is empty.

这是因为您的图片已被管理。使用托管映像,您不会看到 URI,就像托管磁盘一样。

How do i get this URI, so i can set up my Auto Scale enviornment, with the template below?

由于您的图片是托管的,您无法获取 URI。但是,您仍然可以使用模板从托管映像创建 VMSS。

您可以使用

    "imageReference": {
                  "id": "[variables('managedImageId')]"
                  }

可以参考this template。此模板使用映像的名称和组来部署 VMSS。

希望对您有所帮助!