Skip to content

Commit 42b0f7f

Browse files
Merge pull request #273252 from tomvcassidy/vnetDNSLimitation
custom DNS VNET inheritance limitation
2 parents 6b7c6e3 + f7c33e6 commit 42b0f7f

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

articles/container-instances/container-instances-virtual-network-concepts.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,23 @@ Container groups deployed into an Azure virtual network enable scenarios like:
3232

3333
## Unsupported networking scenarios
3434

35-
* **Azure Load Balancer** - Placing an Azure Load Balancer in front of container instances in a networked container group is not supported
36-
* **Global virtual network peering** - Global peering (connecting virtual networks across Azure regions) is not supported
35+
* **Azure Load Balancer** - Placing an Azure Load Balancer in front of container instances in a networked container group isn't supported
36+
* **Global virtual network peering** - Global peering (connecting virtual networks across Azure regions) isn't supported
3737
* **Public IP or DNS label** - Container groups deployed to a virtual network don't currently support exposing containers directly to the internet with a public IP address or a fully qualified domain name
38-
* **Managed Identity with Virtual Network in Azure Government Regions** - Managed Identity with virtual networking capabilities is not supported in Azure Government Regions
38+
* **Managed Identity with Virtual Network in Azure Government Regions** - Managed Identity with virtual networking capabilities isn't supported in Azure Government Regions
3939

4040
## Other limitations
4141

4242
* To deploy container groups to a subnet, the subnet can't contain other resource types. Remove all existing resources from an existing subnet prior to deploying container groups to it, or create a new subnet.
4343
* To deploy container groups to a subnet, the subnet and the container group must be on the same Azure subscription.
4444
* You can't enable a [liveness probe](container-instances-liveness-probe.md) or [readiness probe](container-instances-readiness-probe.md) in a container group deployed to a virtual network.
4545
* Due to the additional networking resources involved, deployments to a virtual network are typically slower than deploying a standard container instance.
46-
* Outbound connections to port 25 and 19390 are not supported at this time. Port 19390 needs to be opened in your Firewall for connecting to ACI from Azure portal when container groups are deployed in virtual networks.
46+
* Outbound connections to port 25 and 19390 aren't supported at this time. Port 19390 needs to be opened in your Firewall for connecting to ACI from Azure portal when container groups are deployed in virtual networks.
4747
* For inbound connections, the firewall should also allow all ip addresses within the virtual network.
48-
* If you are connecting your container group to an Azure Storage Account, you must add a [service endpoint](../virtual-network/virtual-network-service-endpoints-overview.md) to that resource.
49-
* [IPv6 addresses](../virtual-network/ip-services/ipv6-overview.md) are not supported at this time.
50-
* Depending on your subscription type, [certain ports may be blocked](../virtual-network/network-security-groups-overview.md#azure-platform-considerations).
48+
* If you're connecting your container group to an Azure Storage Account, you must add a [service endpoint](../virtual-network/virtual-network-service-endpoints-overview.md) to that resource.
49+
* [IPv6 addresses](../virtual-network/ip-services/ipv6-overview.md) aren't supported at this time.
50+
* Depending on your subscription type, [certain ports could be blocked](../virtual-network/network-security-groups-overview.md#azure-platform-considerations).
51+
* Container instances don't read or inherit DNS settings from an associated virtual network. DNS settings must be explicitly set for container instances.
5152

5253
## Required network resources
5354

@@ -61,7 +62,7 @@ A virtual network defines the address space in which you create one or more subn
6162

6263
Subnets segment the virtual network into separate address spaces usable by the Azure resources you place in them. You create one or several subnets within a virtual network.
6364

64-
The subnet that you use for container groups may contain only container groups. When you first deploy a container group to a subnet, Azure delegates that subnet to Azure Container Instances. Once delegated, the subnet can be used only for container groups. If you attempt to deploy resources other than container groups to a delegated subnet, the operation fails.
65+
The subnet that you use for container groups can contain only container groups. When you first deploy a container group to a subnet, Azure delegates that subnet to Azure Container Instances. Once delegated, the subnet can be used only for container groups. If you attempt to deploy resources other than container groups to a delegated subnet, the operation fails.
6566

6667
### Network profile
6768

@@ -71,15 +72,15 @@ A network profile is a network configuration template for Azure resources. It sp
7172

7273
To use a Resource Manager template, YAML file, or a programmatic method to deploy a container group to a subnet, you need to provide the full Resource Manager resource ID of a network profile. You can use a profile previously created using [az container create][az-container-create], or create a profile using a Resource Manager template (see [template example](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.containerinstance/aci-vnet) and [reference](/azure/templates/microsoft.network/networkprofiles)). To get the ID of a previously created profile, use the [az network profile list][az-network-profile-list] command.
7374

74-
In the following diagram, several container groups have been deployed to a subnet delegated to Azure Container Instances. Once you've deployed one container group to a subnet, you can deploy additional container groups to it by specifying the same network profile.
75+
The following diagram depicts several container groups deployed to a subnet delegated to Azure Container Instances. Once you deploy one container group to a subnet, you can deploy more container groups to it by specifying the same network profile.
7576

7677
![Container groups within a virtual network][aci-vnet-01]
7778

7879
## Next steps
7980

8081
* For deployment examples with the Azure CLI, see [Deploy container instances into an Azure virtual network](container-instances-vnet.md).
8182
* To deploy a new virtual network, subnet, network profile, and container group using a Resource Manager template, see [Create an Azure container group with VNet](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.containerinstance/aci-vnet).
82-
* When using the [Azure portal](container-instances-quickstart-portal.md) to create a container instance, you can also provide settings for a new or exsting virtual network on the **Networking** tab.
83+
* When using the [Azure portal](container-instances-quickstart-portal.md) to create a container instance, you can also provide settings for a new or existing virtual network on the **Networking** tab.
8384

8485

8586
<!-- IMAGES -->

0 commit comments

Comments
 (0)