-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Redis] az redis create/update
: Add --zonal-allocation-policy
to support the way of selecting zones for cache instance
#30705
[Redis] az redis create/update
: Add --zonal-allocation-policy
to support the way of selecting zones for cache instance
#30705
Conversation
️✔️AzureCLI-FullTest
|
Hi @aandukuria, |
|
rule | cmd_name | rule_message | suggest_message |
---|---|---|---|
redis create | cmd redis create added parameter zonal_allocation_policy |
Thank you for your contribution! We will review the pull request and get back to you soon. |
Hi @yonzhan can I please get to know whether it is possible to release this change as part of Feb 2025 milestone as this is a very small change, which is addition of an optional property to existing commands and we are trying to release it in Feb |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
az redis create/update
: Add --zonal-allocation-policy
property using which users can specify the way of selecting zones for their cache instance
az redis create/update
: Add --zonal-allocation-policy
property using which users can specify the way of selecting zones for their cache instanceaz redis create/update
: Add --zonal-allocation-policy
to support the way of selecting zones for cache instance
@aandukuria Pls fix CI failure ASAP or else you may not catch the code complete for Feb release |
/azp run |
Commenter does not have sufficient privileges for PR 30705 in repo Azure/azure-cli |
@evelyn-ys , |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
…s://github.com/aandukuria/azure-cli into aandukuria/update_redis_api_version_2024_11_01
…dis_api_version_2024_11_01
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
Related command
az redis create
az redis update
Description
New api version 2024-11-01 that introduces argument to let users select the way of selecting zones for their cache instance
Testing Guide
Deploying a Premium Azure Cache for Redis with zones automatically allocated
Command:
az redis create --location westus2 --name MyRedisCache --resource-group MyResourceGroup --sku Premium --vm-size p1 --zonal-allocation-policy Automatic
Updating a non zone redundant cache to zone redundant cache using automatic zonal allocation policy.
Command:
az redis update --name MyRedisCache --resource-group MyResourceGroup --set "zonalAllocationPolicy=Automatic"
This 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.