Skip to content

Commit dcaed7c

Browse files
committed
incorp review comment; deleted repeated guidance
1 parent f108c98 commit dcaed7c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

articles/container-instances/container-instances-container-groups.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,20 +47,18 @@ To preserve a container group's configuration, you can export the configuration
4747

4848
Azure Container Instances allocates resources such as CPUs, memory, and optionally [GPUs][gpus] (preview) to a container group by adding the [resource requests][resource-requests] of the instances in the group. Taking CPU resources as an example, if you create a container group with two instances, each requesting 1 CPU, then the container group is allocated 2 CPUs.
4949

50-
The maximum resources you can configure for a container group depend on the [Azure region][region-availability] used for the deployment.
51-
5250
### Resource usage by instances
5351

5452
Each container instance is allocated the resources specified in its resource request. However, the resource usage by a container instance in a group depends on how you configure its optional [resource limit][resource-limits] property.
5553

54+
* If you don't specify a resource limit, the instance's maximum resource usage is the same as its resource request.
55+
5656
* If you specify a resource limit for an instance, you can adjust the instance's resource usage for its workload, either reducing or increasing usage relative to the resource request. The maximum resource limit you can set is the total resources allocated to the group.
5757

5858
For example, in a group with two instances requesting 1 CPU, one of your containers might run a workload that requires more CPUs to run than the other.
5959

6060
In this scenario, you could set a resource limit of 0.5 CPU for one instance, and a limit of 2 CPUs for the second. This configuration limits the first container's resource usage to 0.5 CPU, allowing the second container to use up to the full 2 CPUs if available.
6161

62-
* If you don't specify a resource limit, the instance's maximum resource usage is the same as its resource request.
63-
6462
For more information, see the [ResourceRequirements][resource-requirements] property in the container groups REST API.
6563

6664
### Minimum and maximum allocation

0 commit comments

Comments
 (0)