Skip to content

Commit 46869cc

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into 20220218-rename-secure-app-doc
2 parents 27ce518 + 6a35aff commit 46869cc

File tree

4 files changed

+20
-16
lines changed

4 files changed

+20
-16
lines changed

articles/container-apps/application-lifecycle-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ If your application does not respond to the `SIGTERM` message, then [SIGKILL](ht
5151
## Next steps
5252

5353
> [!div class="nextstepaction"]
54-
> [Work with revisions](revisions.md)
54+
> [Microservices](microservices.md)

articles/container-apps/containers.md

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: container-apps
55
author: craigshoemaker
66
ms.service: container-apps
77
ms.topic: conceptual
8-
ms.date: 11/02/2021
8+
ms.date: 02/18/2022
99
ms.author: cshoe
1010
ms.custom: ignite-fall-2021
1111
---
@@ -18,7 +18,7 @@ Azure Container Apps manages the details of Kubernetes and container orchestrati
1818

1919
Azure Container Apps supports:
2020

21-
- Any Linux-based container image
21+
- Any Linux-based x86-64 (`linux/amd64`) container image
2222
- Containers from any public or private container registry
2323

2424
Additional features include:
@@ -51,8 +51,8 @@ The following example configuration shows the options available when setting up
5151
}
5252
],
5353
"resources": {
54-
"cpu": 1,
55-
"memory": "250Mb"
54+
"cpu": 0.75,
55+
"memory": "1.5Gi"
5656
}
5757
}]
5858
}
@@ -66,17 +66,21 @@ The following example configuration shows the options available when setting up
6666
| `command` | The container's startup command. | Equivalent to Docker's [entrypoint](https://docs.docker.com/engine/reference/builder/) field. |
6767
| `args` | Start up command arguments. | Entries in the array are joined together to create a parameter list to pass to the startup command. |
6868
| `env` | An array of key/value pairs that define environment variables. | Use `secretRef` instead of the `value` field to refer to a secret. |
69-
| `resources.cpu` | The number of CPUs allocated to the container. | Values must adhere to the following rules: the value must be greater than zero and less than 2, and can be any decimal number, with a maximum of one decimal place. For example, `1.1` is valid, but `1.55` is invalid. The default is 0.5 CPU per container. |
70-
| `resources.memory` | The amount of RAM allocated to the container. | This value is up to `4Gi`. The only allowed units are [gibibytes](https://simple.wikipedia.org/wiki/Gibibyte) (`Gi`). Values must adhere to the following rules: the value must be greater than zero and less than `4Gi`, and can be any decimal number, with a maximum of two decimal places. For example, `1.25Gi` is valid, but `1.555Gi` is invalid. The default is `1Gi` per container. |
69+
| `resources.cpu` | The number of CPUs allocated to the container. | Values must adhere to the following rules: the value must be greater than zero and less than or equal to 2, and can be any decimal number, with a maximum of two decimal places. For example, `1.25` is valid, but `1.555` is invalid. The default is 0.5 CPU per container. |
70+
| `resources.memory` | The amount of RAM allocated to the container. | This value is up to `4Gi`. The only allowed units are [gibibytes](https://simple.wikipedia.org/wiki/Gibibyte) (`Gi`). Values must adhere to the following rules: the value must be greater than zero and less than or equal to `4Gi`, and can be any decimal number, with a maximum of two decimal places. For example, `1.25Gi` is valid, but `1.555Gi` is invalid. The default is `1Gi` per container. |
7171

7272
The total amount of CPUs and memory requested for all the containers in a container app must add up to one of the following combinations.
7373

74-
| vCPUs | Memory in Gi |
74+
| vCPUs (cores) | Memory |
7575
|---|---|
76-
| 0.5 | 1.0 |
77-
| 1.0 | 2.0 |
78-
| 1.5 | 3.0 |
79-
| 2.0 | 4.0 |
76+
| `0.25` | `0.5Gi` |
77+
| `0.5` | `1.0Gi` |
78+
| `0.75` | `1.5Gi` |
79+
| `1.0` | `2.0Gi` |
80+
| `1.25` | `2.5Gi` |
81+
| `1.5` | `3.0Gi` |
82+
| `1.75` | `3.5Gi` |
83+
| `2.0` | `4.0Gi` |
8084

8185
- All of the CPU requests in all of your containers must match one of the values in the vCPUs column.
8286
- All of the memory requests in all your containers must match the memory value in the memory column in the same row of the CPU column.
@@ -143,9 +147,9 @@ Azure Container Apps has the following limitations:
143147

144148
- **Privileged containers**: Azure Container Apps can't run privileged containers. If your program attempts to run a process that requires root access, the application inside the container experiences a runtime error.
145149

146-
- **Operating system**: Linux-based container images are required.
150+
- **Operating system**: Linux-based (`linux/amd64`) container images are required.
147151

148152
## Next steps
149153

150154
> [!div class="nextstepaction"]
151-
> [Environment](environment.md)
155+
> [Revisions](revisions.md)

articles/container-apps/environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ Billing is relevant only to individual container apps and their resource usage.
4545
## Next steps
4646

4747
> [!div class="nextstepaction"]
48-
> [Managing autoscaling behavior](scale-app.md)
48+
> [Containers](containers.md)

articles/container-apps/revisions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ New revisions remain active until you deactivate them, or you set your container
6868
## Next steps
6969

7070
> [!div class="nextstepaction"]
71-
> [Manage secrets](manage-secrets.md)
71+
> [Application lifecycle management](application-lifecycle-management.md)

0 commit comments

Comments
 (0)