You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-instances/container-instances-vnet.md
+20-11Lines changed: 20 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ author: mmacy
6
6
7
7
ms.service: container-instances
8
8
ms.topic: article
9
-
ms.date: 08/28/2018
9
+
ms.date: 08/29/2018
10
10
ms.author: marsma
11
11
---
12
12
@@ -16,24 +16,33 @@ Azure Virtual Network provides secure, private networking including filtering, r
16
16
17
17
Container groups deployed into an Azure virtual network enable scenarios like the following:
18
18
19
-
* Direct communication betweem container groups in the same subnet
20
-
* Communicate with virtual machines in another subnet within the same virtual network
21
-
* Execute code in a container instance that accesses an on-premises application or database
19
+
* Direct communication between container groups in the same subnet
22
20
* Container group communication with other Azure resources using service endpoints
21
+
* Communicate with virtual machines in another subnet within the same virtual network
22
+
* Container group communication with an on-premises application or database
23
23
24
-
## Deploy to new virtual network
24
+
## Deploy to a virtual network
25
25
26
26
You can deploy container groups to a new or existing Azure virtual network. Depending on the configuration of the virtual network, your containers can communicate with other Azure resources in the same virtual network, resources in another Azure virtual network, or resources on the public internet.
27
27
28
-
### Network profile
28
+
To deploy container groups into a virtual network, you need the following Azure resources:
29
29
30
-
### Delegated subnet
30
+
***Virtual network** - The virtual network defines the address space in which you create subnets. You deploy resources (like container groups) into subnets.
31
+
***Delegated subnet** - You "delegate" a subnet to Azure Container Instances so it can create container groups in the subnet.
32
+
***Container group network profile** - The network profile of a container group specifies the subnet it should be deployed to, and the container group's network policies.
33
+
***Container group** - The container group is deployed to the subnet specified by the network profile, and is governed by the network policies defined in the profile.
31
34
32
-
## Deploy to existing virtual network
35
+
## Deploy to new virtual network
36
+
37
+
At a high level, the process for deploying a container group to a new virtual network is:
33
38
34
-
1. thing
35
-
1. thing2
36
-
1. thing3
39
+
1. Create a virtual network
40
+
1. Create a subnet
41
+
1. Delegate the subnet to Azure Container Instances
42
+
1. Create a network profile
43
+
1. Deploy a container group, specifying the network profile
0 commit comments