Skip to content

Commit c7de268

Browse files
committed
Minor fixes.
1 parent bc7eca0 commit c7de268

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/container-apps/tutorial-scaling.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: container-apps
55
author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.topic: tutorial
8-
ms.date: 03/20/2025
8+
ms.date: 03/26/2025
99
ms.author: cshoe
1010
ms.custom: devx-track-azurecli
1111
ms.devlang: azurecli
@@ -48,7 +48,7 @@ az containerapp up \
4848
--location centralus \
4949
--environment 'my-container-apps' \
5050
--image mcr.microsoft.com/k8se/quickstart:latest \
51-
--target-port 8080 \
51+
--target-port 80 \
5252
--ingress external \
5353
--query properties.configuration.ingress.fqdn \
5454
```
@@ -62,7 +62,7 @@ az containerapp up `
6262
--location centralus `
6363
--environment my-container-apps `
6464
--image mcr.microsoft.com/k8se/quickstart:latest `
65-
--target-port 8080 `
65+
--target-port 80 `
6666
--ingress external `
6767
--query properties.configuration.ingress.fqdn `
6868
```
@@ -159,7 +159,7 @@ The `show` command returns entries from the system logs for your container app i
159159
}
160160
{
161161
"TimeStamp":"2023-08-01T16:47:31.9481264+00:00",
162-
"Log":"Now listening on: http://[::]:8080"
162+
"Log":"Now listening on: http://[::]:80"
163163
}
164164
{
165165
"TimeStamp":"2023-08-01T16:47:31.9490917+00:00",
@@ -310,7 +310,7 @@ Add a CPU scale rule to your container app by running the `az containerapp updat
310310
> [!NOTE]
311311
> When you use the Azure CLI to add a scale rule to a container app that already has a scale rule, the new scale rule replaces the old scale rule. To see how to add multiple scale rules, see [Multiple scale rules](#multiple-scale-rules).
312312
313-
Before running the following command, replace the `<PLACEHOLDERS>` with your values.
313+
Before running the following command, replace the `<PLACEHOLDERS>` with your values. For this tutorial, replace `<UTILIZATION>` with `1`. This causes your container app to scale when its CPU utilization reaches 1%. This value is for the purpose of demonstration only. The number of replicas is limited to 10 by the `--max-replicas 10` you specified when running `az containerapp update`.
314314

315315
# [Bash](#tab/bash)
316316

@@ -349,7 +349,7 @@ Add a memory scale rule to your container app by running the `az containerapp up
349349
> [!NOTE]
350350
> When you use the Azure CLI to add a scale rule to a container app that already has a scale rule, the new scale rule replaces the old scale rule. To see how to add multiple scale rules, see [Multiple scale rules](#multiple-scale-rules).
351351
352-
Before running the following command, replace the `<PLACEHOLDERS>` with your values. The memory utilization value is the percentage of memory utilization at which you want to scale your app.
352+
Before running the following command, replace the `<PLACEHOLDERS>` with your values. For this tutorial, replace `<UTILIZATION>` with `1`. This causes your container app to scale when its memory utilization reaches 1%. This value is for the purpose of demonstration only. The number of replicas is limited to 10 by the `--max-replicas 10` you specified when running `az containerapp update`.
353353

354354
# [Bash](#tab/bash)
355355

0 commit comments

Comments
 (0)