{Compute} Add Azure Linux 4.0 image aliases#33312
Conversation
️✔️AzureCLI-FullTest
|
️✔️AzureCLI-BreakingChangeTest
|
|
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>
|
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
There was a problem hiding this comment.
Pull request overview
Updates the VM image alias catalog used by az vm image list (including the local fallback alias document) to include Azure Linux 4.0 marketplace image aliases, aligning Azure CLI with the referenced azure-rest-api-specs alias updates.
Changes:
- Add
AzureLinux4(x64),AzureLinux4Arm64(Arm64), andAzureLinux4Gen1(x64) aliases under Linux image aliases. - Extend the embedded local alias JSON (
alias_json) so these aliases are available even when the remote alias doc endpoint can’t be fetched.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "AzureLinux4": { | ||
| "publisher": "microsoftazurelinux", | ||
| "offer": "azurelinux-4", | ||
| "sku": "4", | ||
| "version": "latest", | ||
| "architecture": "x64" |
| "AzureLinux4": { | ||
| "publisher": "microsoftazurelinux", | ||
| "offer": "azurelinux-4", | ||
| "sku": "4", | ||
| "version": "latest", | ||
| "architecture": "x64" | ||
| }, | ||
| "AzureLinux4Arm64": { | ||
| "publisher": "microsoftazurelinux", | ||
| "offer": "azurelinux-4", | ||
| "sku": "4-arm64", | ||
| "version": "latest", | ||
| "architecture": "Arm64" | ||
| }, |
Related command
Description
Sync up new added aliases in this PR Azure/azure-rest-api-specs#42695
Testing Guide
History Notes
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.