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
"Msg":"Replica 'my-container-app--9uj51l6-5f96557ffb-f795d' has been scheduled to run on a node.",
261
+
"Reason":"AssigningReplica",
262
+
"EventSource":"ContainerAppController",
263
+
"Count":0
264
264
}
265
265
```
266
266
@@ -297,7 +297,7 @@ The following screenshot shows a zoomed view of how the requests received by you
297
297
298
298
## CPU and memory scaling
299
299
300
-
You should prefer [HTTP scaling rules](/azure/container-apps/scale-app#http) to CPU or memory scale rules when possible.
300
+
You should prefer [HTTP scale rules](/azure/container-apps/scale-app#http) to CPU or memory scale rules when possible.
301
301
302
302
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).
303
303
@@ -313,8 +313,8 @@ Add a CPU scale rule to your container app by running the `az containerapp updat
313
313
314
314
```azurecli
315
315
az containerapp update \
316
-
--name my-container-app \
317
-
--resource-group my-container-apps \
316
+
--name my-container-app \
317
+
--resource-group my-container-apps \
318
318
--min-replicas 1 \
319
319
--max-replicas 10 \
320
320
--scale-rule-name my-cpu-scale-rule \
@@ -326,8 +326,8 @@ az containerapp update \
326
326
327
327
```powershell
328
328
az containerapp update `
329
-
--name my-container-app `
330
-
--resource-group my-container-apps `
329
+
--name my-container-app `
330
+
--resource-group my-container-apps `
331
331
--min-replicas 1 `
332
332
--max-replicas 10 `
333
333
--scale-rule-name my-cpu-scale-rule `
@@ -347,8 +347,8 @@ Add a memory scale rule to your container app by running the `az containerapp up
347
347
348
348
```azurecli
349
349
az containerapp update \
350
-
--name my-container-app \
351
-
--resource-group my-container-apps \
350
+
--name my-container-app \
351
+
--resource-group my-container-apps \
352
352
--min-replicas 1 \
353
353
--max-replicas 10 \
354
354
--scale-rule-name my-memory-scale-rule \
@@ -360,8 +360,8 @@ az containerapp update \
360
360
361
361
```powershell
362
362
az containerapp update `
363
-
--name my-container-app `
364
-
--resource-group my-container-apps `
363
+
--name my-container-app `
364
+
--resource-group my-container-apps `
365
365
--min-replicas 1 `
366
366
--max-replicas 10 `
367
367
--scale-rule-name my-memory-scale-rule `
@@ -420,8 +420,8 @@ To add multiple scale rules to your container app using the Azure CLI, you must
420
420
metadata:
421
421
type: "Utilization"
422
422
value: "<MEMORY_UTILIZATION>"
423
-
...
424
-
```
423
+
...
424
+
```
425
425
426
426
1. Import your container app configuration from `app.yaml` with the `az containerapp update` command.
0 commit comments