[App Service] Remove Is Preview flag from CLI commands for App Service automatic s…#32807
[App Service] Remove Is Preview flag from CLI commands for App Service automatic s…#32807apwestgarth wants to merge 1 commit intoAzure:devfrom
Conversation
️✔️AzureCLI-FullTest
|
|
Hi @apwestgarth, |
️✔️AzureCLI-BreakingChangeTest
|
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
|
The git hooks are available for azure-cli and azure-cli-extensions repos. They could help you run required checks before creating the PR. Please sync the latest code with latest dev branch (for azure-cli) or main branch (for azure-cli-extensions). pip install azdev --upgrade
azdev setup -c <your azure-cli repo path> -r <your azure-cli-extensions repo path>
|
There was a problem hiding this comment.
Pull request overview
This PR removes the is_preview flag from four App Service automatic scaling CLI parameters, indicating that these features are now generally available (GA). The changes affect the appservice plan update and webapp update commands.
Changes:
- Removed
is_preview=Truefromelastic_scaleandmax_elastic_worker_countparameters inappservice plan updatecommand - Removed
is_preview=Truefromminimum_elastic_instance_countandprewarmed_instance_countparameters inwebapp updatecommand
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
/azp run |
|
Commenter does not have sufficient privileges for PR 32807 in repo Azure/azure-cli |
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
…caling
Related command
az appservice plan update
az webapp update
Description
Removed IsPreview flag from elastic-scale, max-elastic-worker-count, minimum-elastic-instance-count and prewarmed-instance-count
Testing Guide
Turn on automatic scaling for your existing App Service Plan and web apps
az appservice plan update --name <APP_SERVICE_PLAN> --resource-group <RESOURCE_GROUP> --elastic-scale true --max-elastic-worker-count <YOUR_MAX_BURST>
Set minimum number of web app instances
az webapp update --resource-group <RESOURCE_GROUP> --name <APP_NAME> --minimum-elastic-instance-count <ALWAYS_READY_COUNT>
Update prewarmed instances
az webapp update --resource-group <RESOURCE_GROUP> --name <APP_NAME> --prewarmed-instance-count <PREWARMED_COUNT>
History Notes
[Component Name 1] BREAKING CHANGE:
az command a: Make some customer-facing breaking change[Component Name 2]
az command b: Add some customer-facing featureThis checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.