Skip to content

Commit 55080df

Browse files
committed
vnet ga updates
1 parent c5eded3 commit 55080df

File tree

4 files changed

+23
-21
lines changed

4 files changed

+23
-21
lines changed

articles/container-instances/container-instances-region-availability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Resource availability by region
33
description: Availability of compute and memory resources for the Azure Container Instances service in different Azure regions.
44
ms.topic: article
5-
ms.date: 02/19/2020
5+
ms.date: 04/27/2020
66
ms.author: danlep
77

88
---

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

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,16 @@
22
title: Scenarios to use a virtual network
33
description: Scenarios, resources, and limitations to deploy container groups to an Azure virtual network.
44
ms.topic: article
5-
ms.date: 04/20/2020
5+
ms.date: 04/27/2020
66
ms.author: danlep
77

88
---
99

1010
# Virtual network scenarios and resources
1111

12-
[Azure Virtual Network](../virtual-network/virtual-networks-overview.md) provides secure, private networking for your Azure and on-premises resources. By deploying container groups into an Azure virtual network, your containers can communicate securely with other resources in the virtual network. This article provides background about virtual network scenarios, limitations, and resources.
12+
[Azure Virtual Network](../virtual-network/virtual-networks-overview.md) provides secure, private networking for your Azure and on-premises resources. By deploying container groups into an Azure virtual network, your containers can communicate securely with other resources in the virtual network.
1313

14-
For deployment information, see:
15-
16-
* [Deploy container instances into an Azure virtual network](container-instances-vnet.md).
17-
* [Regions and resource availability](container-instances-region-availability.md#availability---virtual-network-deployment) for container group deployments to a virtual network
14+
This article provides background about virtual network scenarios, limitations, and resources. For deployment examples using the Azure CLI, see [Deploy container instances into an Azure virtual network](container-instances-vnet.md).
1815

1916
## Scenarios
2017

@@ -23,8 +20,10 @@ Container groups deployed into an Azure virtual network enable scenarios like:
2320
* Direct communication between container groups in the same subnet
2421
* Send [task-based](container-instances-restart-policy.md) workload output from container instances to a database in the virtual network
2522
* Retrieve content for container instances from a [service endpoint](../virtual-network/virtual-network-service-endpoints-overview.md) in the virtual network
26-
* Container communication with on-premises resources through a [VPN gateway](../vpn-gateway/vpn-gateway-about-vpngateways.md) or [ExpressRoute](../expressroute/expressroute-introduction.md)
23+
* Enable container communication with on-premises resources through a [VPN gateway](../vpn-gateway/vpn-gateway-about-vpngateways.md) or [ExpressRoute](../expressroute/expressroute-introduction.md)
2724
* Integrate with [Azure Firewall](../firewall/overview.md) to identify outbound traffic originating from the container
25+
* Resolve names via the internal Azure DNS for communication with Azure resources in the virtual network, such as virtual machines
26+
* Use NSG rules to control container access to subnets or other network resources
2827

2928
## Unsupported networking scenarios
3029

@@ -34,14 +33,20 @@ Container groups deployed into an Azure virtual network enable scenarios like:
3433
* Global virtual network peering (connecting virtual networks across Azure regions) is not supported
3534
* **Private link** - Accessing Azure resources at a private endpoint over a private link is not supported
3635
* **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
37-
* **Internal name resolution** - Name resolution for Azure resources in the virtual network via the internal Azure DNS is not supported
3836

3937
## Other limitations
4038

39+
* Currently, only Linux containers are supported in a container group deployed to a virtual network.
4140
* 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.
4241
* You can't use a [managed identity](container-instances-managed-identity.md) in a container group deployed to a virtual network.
4342
* 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.
44-
* Due to the additional networking resources involved, deploying a container group to a virtual network is typically slower than deploying a standard container instance.
43+
* Due to the additional networking resources involved, deployments to a virtual network are typically slower than deploying a standard container instance.
44+
45+
## Where to deploy
46+
47+
The following regions and maximum resources are available to deploy a container group in an Azure virtual network.
48+
49+
[!INCLUDE [container-instances-vnet-limits](../../includes/container-instances-vnet-limits.md)]
4550

4651
## Required network resources
4752

articles/container-instances/container-instances-vnet.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Deploy container group to Azure virtual network
3-
description: Learn how to deploy a container group to a new or existing Azure virtual network.
3+
description: Learn how to deploy a container group to a new or existing Azure virtual network by using the Azure command-line interface.
44
ms.topic: article
5-
ms.date: 04/20/2020
5+
ms.date: 04/27/2020
66
ms.author: danlep
77
---
88

@@ -12,15 +12,13 @@ ms.author: danlep
1212

1313
This article shows how to use the [az container create][az-container-create] command in the Azure CLI to deploy container groups to either a new virtual network or an existing virtual network.
1414

15-
Examples in this article are formatted for the Bash shell. If you prefer another shell such as PowerShell or Command Prompt, adjust the line continuation characters accordingly.
15+
For networking scenarios and limitations, see [Virtual network scenarios and resources for Azure Container Instances](container-instances-virtual-network-concepts.md).
1616

17-
For background, see:
17+
> [!IMPORTANT]
18+
> Container group deployment to a virtual network is generally available for Linux containers, in most regions where Azure Container Instances is available. For details, see [Regions and resource availability](container-instances-virtual-network-concepts#where-to-deploy).
1819
19-
* [Virtual network scenarios and resources for Azure Container Instances](container-instances-virtual-network-concepts.md)
20-
* [Regions and resource availability](container-instances-region-availability.md#availability---virtual-network-deployment) for container group deployments to a virtual network.
20+
Examples in this article are formatted for the Bash shell. If you prefer another shell such as PowerShell or Command Prompt, adjust the line continuation characters accordingly.
2121

22-
> [!IMPORTANT]
23-
> Container group deployments to a virtual network are generally available for production workloads only in the following regions: **East US, South Central US, and West US 2**.
2422

2523
## Deploy to new virtual network
2624

includes/container-instances-vnet-limits.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
author: dlepow
33
ms.service: container-instances
44
ms.topic: include
5-
ms.date: 01/31/2020
5+
ms.date: 04/27/2020
66
ms.author: danlep
77
---
88
### Regions and resource availability
99

1010
| Regions | OS | Max CPU | Max Memory (GB) | Storage (GB) |
1111
| -------- | :---: | :---: | :-----------: | :---: |
12-
| Australia East, Canada Central, Central US, East US<sup>1</sup>, East US 2, North Europe, South Central US<sup>1</sup>, Southeast Asia, West Europe, West US 2<sup>1</sup> | Linux | 4 | 16 | 50 |
12+
| Australia East, Canada Central, Central US, East US, East US 2, North Europe, South Central US, Southeast Asia, West Europe, West US 2 | Linux | 4 | 16 | 50 |
1313
| Japan East | Linux | 2 | 8 | 50 |
1414
| North Central US, South India, West US | Linux | 2 | 3.5 | 50 |
1515

16-
<sup>1</sup>Region in which container group deployments to a virtual network are generally available for production workloads. In other regions, virtual network deployments are in preview.

0 commit comments

Comments
 (0)