You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -159,7 +159,7 @@ The `show` command returns entries from the system logs for your container app i
159
159
}
160
160
{
161
161
"TimeStamp":"2023-08-01T16:47:31.9481264+00:00",
162
-
"Log":"Now listening on: http://[::]:8080"
162
+
"Log":"Now listening on: http://[::]:80"
163
163
}
164
164
{
165
165
"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
310
310
> [!NOTE]
311
311
> 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).
312
312
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`.
314
314
315
315
# [Bash](#tab/bash)
316
316
@@ -349,7 +349,7 @@ Add a memory scale rule to your container app by running the `az containerapp up
349
349
> [!NOTE]
350
350
> 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).
351
351
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`.
0 commit comments