0

我想自动部署虚拟网络(与另一个网络对等)和连接到该网络的容器实例。我只是想确认我会采取正确的步骤。我将使用 Azure REST API。

  1. 使用子网部署虚拟网络
  2. 创建与其他虚拟网络的对等互连
  3. 创建网络配置文件
  4. 使用创建的网络配置文件部署容器。

第 3 步对我来说有点奇怪,因为它与我在 Azure 门户中所做的不同。在门户中,我只需选择我希望我的容器连接到的虚拟网络。查看 MSDN Docs 在我看来,REST API 要求我首先创建该网络配置文件。我对吗?

4

1 回答 1

2

当您使用az container createaz cli 部署容器时,将在后台为您创建网络配置文件。

这可能就是您之前可能没有看到网络配置文件的显式创建的原因。

A network profile is a network configuration template for Azure resources. It specifies certain network properties for the resource, for example, the subnet into which it should be deployed. When you first use the az container create command to deploy a container group to a subnet (and thus a virtual network), Azure creates a network profile for you. You can then use that network profile for future deployments to the subnet.

https://docs.microsoft.com/en-us/azure/container-instances/container-instances-vnet#network-profile

你的步骤看起来不错。

于 2020-04-28T14:11:30.083 回答