如何在 .Net SDK 或 PowerShell 或 ARM 模板中使用自定义图像创建 Azure Batch 服务应用程序池
How to create Azure Batch service Application pool with custom image in .Net SDK or PowerShell or ARM Template
我指的是这篇文章https://docs.microsoft.com/en-us/azure/batch/quick-create-portal
我有自己的自定义 VHD 文件,我想通过 .Net SDK 或 PowerShell 或 ARM 模板创建包含自定义 VHD 文件(节点)的应用程序池。我可以从 Azure 门户创建它
有例子吗?
You can prepare a managed image from a VHD, from an Azure VM with
managed disks, or from a VM snapshot. For Batch, we recommend creating
a managed image from a VM with managed disks or a VM snapshot.
通过测试,您似乎可以将自定义 VHD 文件制作成托管映像,从而创建上述批处理后端池。同样来自命令 az batch pool create
.
的参数 --image
的描述
我指的是这篇文章https://docs.microsoft.com/en-us/azure/batch/quick-create-portal
我有自己的自定义 VHD 文件,我想通过 .Net SDK 或 PowerShell 或 ARM 模板创建包含自定义 VHD 文件(节点)的应用程序池。我可以从 Azure 门户创建它
有例子吗?
You can prepare a managed image from a VHD, from an Azure VM with managed disks, or from a VM snapshot. For Batch, we recommend creating a managed image from a VM with managed disks or a VM snapshot.
通过测试,您似乎可以将自定义 VHD 文件制作成托管映像,从而创建上述批处理后端池。同样来自命令 az batch pool create
.
--image
的描述