Skip to content

Commit f356d44

Browse files
authored
Update deployment methods for multi-container groups
1 parent fcba6ba commit f356d44

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

learn-pr/wwl-azure/configure-azure-container-instances/includes/4-implement-container-groups.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ Let's review some of details about container groups for Azure Container Instance
1010

1111
- Azure Container Instances allocates resources to a multi-container group by adding together the resource requests of all containers in the group. Resources can include items such as CPUs, memory, and GPUs.
1212

13-
- There are two common ways to deploy a multi-container group: Azure Resource Manager (ARM) templates and YAML files.
13+
- There are three common ways to deploy a multi-container group.
1414

15-
- **ARM template**. An ARM template is recommended for deploying other Azure service resources when you deploy your container instances, such as an Azure Files file share.
15+
- **Azure Resource Manager template**. JSON-based infrastructure as code, ideal when deploying alongside other Azure resources.
16+
17+
- **Bicep**. Microsoft's recommended infrastructure as code language, more concise than Azure Resource Manager templates. Bicep includes full IntelliSense support.
1618

17-
- **YAML file**. Due to the concise nature of the YAML format, a YAML file is recommended when your deployment includes only container instances.
19+
- **YAML files**. Container-focused format, ideal for deployments that include only container instances.
1820

1921
- Container groups can share an external-facing IP address, one or more ports on the IP address, and a DNS label with an FQDN.
2022

@@ -49,4 +51,4 @@ Consider the following scenarios for working with multi-container groups. Think
4951

5052
- **Consider app monitoring**. Enable monitoring for your app with a multi-container group. A monitoring container periodically makes a request to your application container to ensure your app is running and responding correctly. The monitoring container raises an alert if it identifies possible issues with your app.
5153

52-
- **Consider front-end and back-end support**. Create a multi-container group to hold your front-end container and back-end container. The front-end container can serve a web app. The back-end container can run a service to retrieve data.
54+
- **Consider front-end and back-end support**. Create a multi-container group to hold your front-end container and back-end container. The front-end container can serve a web app. The back-end container can run a service to retrieve data.

0 commit comments

Comments
 (0)