Skip to content

Commit 9851f61

Browse files
Merge pull request #302048 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents d27a7a8 + 7975ab9 commit 9851f61

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/container-apps/scale-app.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.custom: devx-track-azurecli
88
ms.topic: conceptual
9-
ms.date: 05/19/2025
9+
ms.date: 06/26/2025
1010
ms.author: cshoe
1111
zone_pivot_groups: arm-azure-cli-portal-bicep
1212
---
@@ -717,24 +717,24 @@ If you don't create a scale rule, the default scale rule is applied to your cont
717717
718718
## Scale behavior
719719

720-
Scaling behavior has the following defaults:
720+
Scaling has the following behaviors:
721721

722-
| Parameter | Value |
722+
| Behavior | Value |
723723
|--|--|
724724
| Polling interval | 30 seconds |
725725
| Cool down period | 300 seconds |
726726
| Scale up stabilization window | 0 seconds |
727727
| Scale down stabilization window | 300 seconds |
728-
| Scale up step | 1, 4, 100% of current |
729-
| Scale down step | 100% of current |
728+
| Scale up step | 1, 4, 8, 16, 32, ... up to configured maximum replica count |
729+
| Scale down step | 100% of replicas that need to shut down |
730730
| Scaling algorithm | `desiredReplicas = ceil(currentMetricValue / targetMetricValue)` |
731731

732732
- **Polling interval** is how frequently event sources are queried by KEDA. This value doesn't apply to HTTP and TCP scale rules.
733733
- **Cool down period** is how long after the last event was observed before the application scales down to its minimum replica count.
734734
- **Scale up stabilization window** is how long to wait before performing a scale up decision once scale up conditions were met.
735735
- **Scale down stabilization window** is how long to wait before performing a scale down decision once scale down conditions were met.
736-
- **Scale up step** is the rate new instances are added at. It starts with 1, 4, 8, 16, 32, ... up to the configured maximum replica count.
737-
- **Scale down step** is the rate at which replicas are removed. By default 100% of replicas that need to shut down are removed.
736+
- **Scale up step** is how many replicas are added as your container app scales out. It starts at 1, then increases to 4, 8, 16, 32, and so on, up to the configured maximum replica count.
737+
- **Scale down step** is how many replicas are removed as your container app scales in. 100% of replicas that need to shut down are removed.
738738
- **Scaling algorithm** is the formula used to calculate the current desired number of replicas.
739739

740740
### Example

articles/container-apps/tutorial-deploy-from-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ The following table describes the parameters used by this command.
544544
| `resource-group` | `$RESOURCE_GROUP` | The resource group in which your container app is deployed. |
545545
| `environment` | `$ENVIRONMENT` | The environment in which your container app runs. |
546546
| `image` | `$REGISTRY_NAME".azurecr.io/"$CONTAINER_APP_NAME":helloworld"` | The container image to deploy, including the registry name and tag. |
547-
| `target-port` | `80` | Matches the port that your app is listening to for requests. |
547+
| `target-port` | `8080` | Matches the port that your app is listening to for requests. |
548548
| `ingress` | `external` | Makes your container app accessible from the public internet. |
549549
| `user-assigned` | `$IDENTITY_ID` | The user-assigned managed identity for your container app. |
550550
| `registry-identity` | `registry-identity` | The identity used to access the container registry. |

0 commit comments

Comments
 (0)