-
Notifications
You must be signed in to change notification settings - Fork 1.5k
image-copy: first commit #8
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
Conversation
|
|
||
| def load_params(_): | ||
| with ParametersContext('image copy') as c: | ||
| c.register('source_resource_group_name', '--source-resource-group-name', help='Name of the resource gorup of the source resource') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would just make it --source-resource-group or maybe --source-group. --source-resource-group-name is too long.
|
|
||
| def load_params(_): | ||
| with ParametersContext('image copy') as c: | ||
| c.register('source_resource_group_name', '--source-resource-group-name', help='Name of the resource gorup of the source resource') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo gorup to group
| with ParametersContext('image copy') as c: | ||
| c.register('source_resource_group_name', '--source-resource-group-name', help='Name of the resource gorup of the source resource') | ||
| c.register('source_object_name', '--source-object-name', help='The name of the image or vm resource') | ||
| c.register('target_location', '--target-location', help='Comma seperated location list to create the image in') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo seperated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should use nargs=+ and it would be space-separated since that's what we use elsewhere in CLI.
For example https://github.com/Azure/azure-cli/blob/dev/src/azure-cli-core/azure/cli/core/commands/parameters.py#L209
| c.register('source_resource_group_name', '--source-resource-group-name', help='Name of the resource gorup of the source resource') | ||
| c.register('source_object_name', '--source-object-name', help='The name of the image or vm resource') | ||
| c.register('target_location', '--target-location', help='Comma seperated location list to create the image in') | ||
| c.register('source_type', '--source-type', help='image (default) or vm') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the (default) for?
Not sure if I understand the help text fully and maybe it's not that clear?
| c.register('source_object_name', '--source-object-name', help='The name of the image or vm resource') | ||
| c.register('target_location', '--target-location', help='Comma seperated location list to create the image in') | ||
| c.register('source_type', '--source-type', help='image (default) or vm') | ||
| c.register('target_resource_group_name', '--target-resource-group-name', help='Name of the resource group to create images in') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would remove name from '--target-resource-group-name at least.
|
|
||
| source_os_disk_id = json_cmd_output['storageProfile']['osDisk']['managedDisk']['id'] | ||
| source_os_type = json_cmd_output['storageProfile']['osDisk']['osType'] | ||
| logger.debug("source_os_disk_id: " + source_os_disk_id + " source_os_type: " + source_os_type) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Logger prefers lazy loading of arguments so:
logger.debug("source_os_disk_id: %s source_os_type: %s", source_os_disk_id, source_os_type)
| pool.close() | ||
| pool.join() | ||
| except KeyboardInterrupt: | ||
| print('xxx - parent') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can remove?
| except KeyboardInterrupt: | ||
| print('xxx - parent') | ||
| logger.warn('User cancelled the operation') | ||
| if 'true' in cleanup: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If cleanup is defined as action='store_true' then this would simply be if cleanup with is a lot less likely to break e.g. with letter casing.
| print('xxx - parent') | ||
| logger.warn('User cancelled the operation') | ||
| if 'true' in cleanup: | ||
| logger.warn('To cleanup temporary resources look for ones tagged with "image-copy-extension"') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be good if you actually print the command to do this.
az resource list --tag ...
src/image-copy/setup.py
Outdated
| license='MIT', | ||
| author='Tamir Kamara', | ||
| author_email='[email protected]', | ||
| url='https://github.com/ORG/REPO', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
@tamirkamara Thanks for the PR! |
| @@ -0,0 +1,3 @@ | |||
| { | |||
| "azext.minCliVersion": "2.0.12" | |||
| } No newline at end of file | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can remove this.
I know it was in the example but not needed in this case.
| c.register('source_resource_group_name', '--source-resource-group', help='Name of the resource group of the source resource') | ||
| c.register('source_object_name', '--source-object-name', help='The name of the image or vm resource') | ||
| c.register('target_location', '--target-location', nargs='+', help='Space separated location list to create the image in (use location short codes like westeurope etc.)') | ||
| c.register('source_type', '--source-type', default='image', help='image or vm') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add choices=['image', 'vm'] if those are the only two allowed values.
| json_output = json.loads(cmd_output) | ||
| return json_output | ||
| else: | ||
| raise CLIError("Command returned an unexpected empty string.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be good to add which command to this error message?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's one later on - this raises an exception in the try-catch block and the catch prints the cmd
|
|
||
| # tag newly created resources | ||
| if 'create' in cmd and ('container' not in cmd): | ||
| full_cmd += ['--tags', 'created_by=image-copy-extension'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay makes sense.
Consider adding one line comment for this to explain?
|
|
||
| if 'false' in cmd_output: | ||
| # create the target resource group | ||
| logger.warn("Creating resource group: %s", ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing the actual value here it seems
src/image-copy/setup.py
Outdated
| url='https://github.com/Azure/azure-cli-extensions', | ||
| classifiers=CLASSIFIERS, | ||
| packages=find_packages(), | ||
| package_data={'azext_imagecopy': ['azext_metadata.json']}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can remove this.
* Azure quantum extension v0 (#2) Initial version. * Fixing style issues * Incorporating feedback (#6) * readme * feedback * Help * Make storage account optional (#7) * Storage is now optional (#8) * Making storage an argument, not an env variable (#9) * Adding implementation of 'az quantum workspace delete' command. * Setting new temporary version. * Fixing missing file in test change * Adding details to README.md (#5) * Updating generated files for Azure Quantum resource manager from new swagger file version * Remove manual edit of generated file. * Updating generated files for Azure Quantum data plane from new swagger file version * Updating generated files for Azure Quantum resource manager from new swagger file version. (2020-11-06) (#13) * Adding implementation of 'az quantum workspace create' command. (#14) Adding initial implementation of 'az quantum workspace create' command. ----------------------------------- Command az quantum workspace create : Creates a new Azure Quantum workspace. Command group 'quantum' is in preview. It may be changed/removed in a future release. Arguments --location -l : Location. Values from: az account list-locations. You can configure the default location using az configure --defaults location=<location>. --resource-group -g : Name of resource group. You can configure the default group using az configure --defaults group=<name>. --storage_account -sa : Name of the storage account to be used by a quantum workspace. --workspace-name -w : Name of the Quantum Workspace. You can configure the default workspace using az quantum workspace set. * Update Azure CLI quantum extension to multi-region (#17) This change will set the URL for the data plan API accordingly with a location parameter specified as part of the command. * Updating swagger files per commit 44563991425d862ba4e8090a2b5b6caf8333600c in azure-rest-api-specs-pr. (#16) Updating swagger files per commit 44563991425d862ba4e8090a2b5b6caf8333600c in azure-rest-api-specs-pr. * Fixing tests for multi-region URL change on Az CLI quantum extension (#19) Fixing tests for multi-region URL change on Az CLI quantum extension * Incorporating ARM feedback (#18) * Picking up latest changes from swagger after ARM feedback * updated create_or_update * run command * Setting default location in workspace calls if not specified (#20) * updating python azure quantum rest client (#21) * Update generated files from swagger file (Version 2021-01-11) (#22) * Hot fixes on December 2020 release of Azure CLI extension (#23) * Fixing issue with over specification of location * Updating version information of extension * Update CLI with generated clients from more recent swagger files (#24) - Data plane updated to official swagger file (2021-01-11 19:01:32 UTC) on azure-rest-api-specs @ 98ae52b. - Resource manager updated to candidate swagger file (2021-01-15 19:35:41 UTC) on anpaz:quantum/resource-manager @ a9a9e271c13500aa54fdbb1bcb656eb61d82d38b. * Update src/quantum/README.rst Co-authored-by: Feiyue Yu <[email protected]> * Update src/quantum/README.rst Co-authored-by: Feiyue Yu <[email protected]> * Update src/quantum/README.rst Co-authored-by: Feiyue Yu <[email protected]> * Update src/quantum/README.rst Co-authored-by: Feiyue Yu <[email protected]> * Require location as a mandatory parameter in workspace specification (#25) * Make location mandatory in commands * Update test recordings * Resetting the version history for the released version. * Fix description of workspace clear command * Updatig Readme file to RST format. * Update Readme file per pull request comments. * Fixing az quantum run and execute commands to include location parameter * Performing role assignment on storage account on workspace creation. (#29) * Add warning message about providers during workspace creation (#30) * Enable command az quantum workspace quotas (#31) * Removing extra space in Readme.rst Co-authored-by: Feiyue Yu <[email protected]> * Fix punctuation in Readme.rst Co-authored-by: Feiyue Yu <[email protected]> * Update src/quantum/README.rst Co-authored-by: Feiyue Yu <[email protected]> * Update src/quantum/azext_quantum/_params.py Co-authored-by: Feiyue Yu <[email protected]> * First round of code review feedback on Readme.rst * Improve code readability on job commands * Avoid IndexError in case of malformed URL * Extended info on targetId parameter * Add help to each individual command * Reorganize sections in Readme.rst and merge in a single set of instructions. * Static analysis fixes * Fix CLI Linter errors * Fix CLI Linter errors. Part 2 * Fix typo in show command. * Fix show command for Linter * Use standard name for show command method * Modify workspace create test to skip role assignment * Update tests with workspace names used currently. * Update test recordings. * Set subscription for the recordings. * Update test recordings. * Update QDK version number * Remove asserts and checks for subscription * Experiment: Remove check for preview subscription * Refresh recordings with current test values. * Update recordings after typo fix. * Remove commented out API that references subscription * Enable QuantumJobsScenarioTest.test_submit_args only on live mode Co-authored-by: Ricardo Espinoza <[email protected]> Co-authored-by: Feiyue Yu <[email protected]>
Bugfix - fix az webapp show errors
…te (Azure#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]>
…te (Azure#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]>
…te (Azure#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]>
* Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Dapr moved from Template to Configuration * Use aka.ms link for containerapps yaml * Updated dapr enable/disable to current spec. * Fixed oversight. * Remove revisions-mode from containerapp update * Fixed dapr enable property names. (#47) Co-authored-by: Haroon Feisal <[email protected]> * Fix exceptions with using --yaml in containerapp create/update * Rename history msg * Include fqdn in containerapp table output * Added ingress messages. * Revert history msg * Add basic test case * Remove managed-identity support for first release of CLI * Need to investigate test flakiness * Update _help.py removing duplicate help Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]> Co-authored-by: Sisira Panchagnula <[email protected]>
* Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (Azure#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (Azure#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (Azure#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (Azure#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (Azure#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (Azure#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (Azure#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (Azure#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (Azure#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (Azure#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (Azure#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing. * Fixed dapr in create. * Revert "Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing." This reverts commit 51bc543. * Revert "Fixed dapr in create." This reverts commit 37030ad. * Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing. * Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (Azure#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (Azure#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (Azure#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (Azure#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (Azure#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (Azure#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (Azure#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (Azure#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (Azure#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (Azure#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (Azure#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Dapr moved from Template to Configuration * Use aka.ms link for containerapps yaml * Updated dapr enable/disable to current spec. * Fixed oversight. * Remove revisions-mode from containerapp update * Fixed dapr enable property names. (Azure#47) Co-authored-by: Haroon Feisal <[email protected]> * Fix exceptions with using --yaml in containerapp create/update * Rename history msg * Include fqdn in containerapp table output * Added ingress messages. * Revert history msg * Reduced redundant code between revision copy and containerapp update. * Fixed merge issues. * Fixed merge conflicts, moved helper function Co-authored-by: Calvin Chan <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]>
…#4660) * Marchp1s and add back Identity (#57) * Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing. * Fixed dapr in create. * Revert "Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing." This reverts commit 51bc543. * Revert "Fixed dapr in create." This reverts commit 37030ad. * Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing. * Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Dapr moved from Template to Configuration * Use aka.ms link for containerapps yaml * Updated dapr enable/disable to current spec. * Fixed oversight. * Remove revisions-mode from containerapp update * Fixed dapr enable property names. (#47) Co-authored-by: Haroon Feisal <[email protected]> * Fix exceptions with using --yaml in containerapp create/update * Rename history msg * Include fqdn in containerapp table output * Added ingress messages. * Revert history msg * Reduced redundant code between revision copy and containerapp update. * Fixed merge issues. * Fixed merge conflicts, moved helper function Co-authored-by: Calvin Chan <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]> * Fix help for linter * various fixes, helptext (#59) * Fixes (#60) * Updated managed identity + help. (#61) Co-authored-by: Haroon Feisal <[email protected]> * Added user-assigned and system-assigned to containerapp create. (#62) Co-authored-by: Haroon Feisal <[email protected]> * Bump version to 0.1.1 (#63) * Added more specific MSI help text. (#64) * Added more specific MSI help text. * Updated help text. Co-authored-by: Haroon Feisal <[email protected]> * Bump to 0.3.0 (#65) Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]>
* Marchp1s and add back Identity (#57) * Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing. * Fixed dapr in create. * Revert "Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing." This reverts commit 51bc543. * Revert "Fixed dapr in create." This reverts commit 37030ad. * Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing. * Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Dapr moved from Template to Configuration * Use aka.ms link for containerapps yaml * Updated dapr enable/disable to current spec. * Fixed oversight. * Remove revisions-mode from containerapp update * Fixed dapr enable property names. (#47) Co-authored-by: Haroon Feisal <[email protected]> * Fix exceptions with using --yaml in containerapp create/update * Rename history msg * Include fqdn in containerapp table output * Added ingress messages. * Revert history msg * Reduced redundant code between revision copy and containerapp update. * Fixed merge issues. * Fixed merge conflicts, moved helper function Co-authored-by: Calvin Chan <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]> * Fix help for linter * various fixes, helptext (#59) * Fixes (#60) * Updated managed identity + help. (#61) Co-authored-by: Haroon Feisal <[email protected]> * Added user-assigned and system-assigned to containerapp create. (#62) Co-authored-by: Haroon Feisal <[email protected]> * Bump version to 0.1.1 (#63) * Added more specific MSI help text. (#64) * Added more specific MSI help text. * Updated help text. Co-authored-by: Haroon Feisal <[email protected]> * Bump to 0.3.0 (#65) * Container App Test suite (#67) * Add tests for containerapp create * All tests under the same function to share environment - need to figure how to get multiple functions to share environment * Basic tests * use new GH actions API * remove live only recordings * update CODEOWNERS * fix API version naming * Managed Identity Tests (#69) * Added managed identity tests. * Fixed msi tests. Co-authored-by: Haroon Feisal <[email protected]> * resolve review comments * Managed Identity Fixes (#71) * Added managed identity tests. * Fixed msi tests. * Added live_only to managed identity tests. * Changed region to eastus2 from canary. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/_params.py Co-authored-by: Xing Zhou <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]> Co-authored-by: Silas Strawn <[email protected]> Co-authored-by: Sisira Panchagnula <[email protected]>
…mmands, log streaming commands (Azure#72) * Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (Azure#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (Azure#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (Azure#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (Azure#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (Azure#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (Azure#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (Azure#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (Azure#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (Azure#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (Azure#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Dapr moved from Template to Configuration * Use aka.ms link for containerapps yaml * Updated dapr enable/disable to current spec. * Fixed oversight. * Remove revisions-mode from containerapp update * Fixed dapr enable property names. (Azure#47) Co-authored-by: Haroon Feisal <[email protected]> * Fix exceptions with using --yaml in containerapp create/update * Rename history msg * Include fqdn in containerapp table output * Added ingress messages. * Revert history msg * Add basic test case * Remove managed-identity support for first release of CLI * Need to investigate test flakiness * Update _help.py removing duplicate help * Added prototype of container up. * Fixed deploy from acr registry image infer credentials issue. * Tried to add source. * Added acr build. * Finished acr build functionality. * Added acr create functionality and pull registry from existing containerapp if it exists. * Fixed bugs. * Check if rg exists and create one with name if it doesn't. * initial containerapp ssh implementation * fix interactive commands (vim); handle ctrl + c instead of exiting * fix style and linter issues * Added disable verbose. Moved utils into utils.py. * fix for ssh for windows clients * fix for unix * Disable verbose now uses sdk poller so it gives running animation. * Added helps for params. Added error handling for non acr registry passed with source. Ignore param disable_warnings for create and no_wait for up. * Updated disable_warnings ignore. Removed disable_warnings from update_containerapp. * add terminal resizing * reorganize code; implement terminal resizing, add startup command param, etc * organize code, remove token from warning output * add validations, add replica commands * use the correct API for fetching default container; remove is_preview * Renamed silent to quiet. * Fixed style issues. * add log streaming, bump version number and add to HISTORY.rst * add basic ssh test * Added workspace name and fqdn to dry_run_str. Added indicators of if the resources are new or existing to dry_run_str. * fix ssh test for windows * Check RP for location when not provided. Open Dockerfile and use EXPOSE for CA port. * fix windows arrow keys after exit * fix typo, add logstream test, remove token from logstream output * Removed print statement. * Updated dockerfile expose automatic ingress feature. * Removed dry run str, added dry run obj instead. * use bearer auth; fix --command bug * add handling for smooth transition to new URL path * Fixed merge conflict. * fix merge conflicts * Create env if name passed and it doesn't exist. * Added missing import from merge. * Added prototype for new environment workflow. * Finished environment logic. * Minor updates before demo. * add 'az containerapp github up' (wip) * various fixes for demo * rearrange github up code * merge haroonf/containerappup * start up refactor * add --repo to up and refactor up * reorganize code more; fix various bugs * fix linter issues, fix lingering exec/tail improvements * update history * update output * bug fixes for --repo * fix --source bug * fix --source * minor bug fixes * Added API change. * Finished API change, added helloworld image auto ingress, checked provisioning state beforehand. * fixes for sisira's comments * fix minor typo * bug fix where commands fail if providing registry creds * Fixed style issues. * Updated help and version text. Co-authored-by: Calvin Chan <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]> Co-authored-by: Sisira Panchagnula <[email protected]>
* Marchp1s and add back Identity (#57) * Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (Azure#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (Azure#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (Azure#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (Azure#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (Azure#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (Azure#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (Azure#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (Azure#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (Azure#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (Azure#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing. * Fixed dapr in create. * Revert "Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing." This reverts commit 51bc543. * Revert "Fixed dapr in create." This reverts commit 37030ad. * Ingress enable --transport default. Secret list returns empty array. Secret update prints message saying user needs to restart their apps. Added show-values flag to secret list. Fixed yaml datetime field issues, replaced x00 values that also came up during testing. * Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (Azure#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (Azure#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (Azure#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (Azure#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (Azure#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (Azure#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (Azure#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (Azure#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (Azure#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (Azure#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Dapr moved from Template to Configuration * Use aka.ms link for containerapps yaml * Updated dapr enable/disable to current spec. * Fixed oversight. * Remove revisions-mode from containerapp update * Fixed dapr enable property names. (Azure#47) Co-authored-by: Haroon Feisal <[email protected]> * Fix exceptions with using --yaml in containerapp create/update * Rename history msg * Include fqdn in containerapp table output * Added ingress messages. * Revert history msg * Reduced redundant code between revision copy and containerapp update. * Fixed merge issues. * Fixed merge conflicts, moved helper function Co-authored-by: Calvin Chan <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]> * Fix help for linter * various fixes, helptext (Azure#59) * Fixes (Azure#60) * Updated managed identity + help. (Azure#61) Co-authored-by: Haroon Feisal <[email protected]> * Added user-assigned and system-assigned to containerapp create. (Azure#62) Co-authored-by: Haroon Feisal <[email protected]> * Bump version to 0.1.1 (Azure#63) * Added more specific MSI help text. (Azure#64) * Added more specific MSI help text. * Updated help text. Co-authored-by: Haroon Feisal <[email protected]> * Bump to 0.3.0 (Azure#65) * Container App Test suite (Azure#67) * Add tests for containerapp create * All tests under the same function to share environment - need to figure how to get multiple functions to share environment * Basic tests * use new GH actions API * remove live only recordings * update CODEOWNERS * fix API version naming * Managed Identity Tests (Azure#69) * Added managed identity tests. * Fixed msi tests. Co-authored-by: Haroon Feisal <[email protected]> * resolve review comments * Managed Identity Fixes (Azure#71) * Added managed identity tests. * Fixed msi tests. * Added live_only to managed identity tests. * Changed region to eastus2 from canary. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/_params.py Co-authored-by: Xing Zhou <[email protected]> * 4/26 release: Up with --repo/--browse, exec (ssh) command, replica commands, log streaming commands (Azure#72) * Skeleton code * az containerapp env show * List kube/managed environments * Create kube environment, wait doesn't work yet * Update containerapp stubs (check if it is supported now) * Containerapp env delete, polling not working yet * Added polling for create and delete * Use Microsoft.App RP for show, list, delete command * Create containerapp env using Microsoft.App RP * Add optional containerapp env create arguments * Remove old kube environment code, naming fixes * Containerapp create almost done * Done containerapp create, except for --yaml. Need to test * Containerapp show, list * Fix helptext * Containerapp delete * Containerapp update. Needs secrets api to be implemented, and testing * Add scale command * Various validations, small fixes * listSecrets API for updates, autogen log analytics for env * Use space delimiter for secrets and env variables * Verify sub is registered to Microsoft.ContainerRegistration if creating vnet enabled env, remove logs-type parameter * Containerapp create --yaml * Fix updating registry to do create or update * Fix containerapp update command. Add image-name parameter to support multi container updates. Fix updating registries, containers and secrets * started update with --yaml. Need to do create or update for when an attribute is a list of items * use space delimiter for startup_command and args, instead of comma delimiter * Traffic weights * List and show revisions * az containerapp revision restart, activate, deactivate * Add ability for users to clear args/command in az containerapp update * Various fixes, traffic weights fixes * Verify subnet subscription is registered to Microsoft.ContainerServices * GitHub Actions Update (Azure#17) * Added models. Finished transferring Calvin's previous work. * Updated wrong models. * Updated models in custom.py, added githubactionclient. * Updated envelope to be correct. * Small bug fixes. * Updated error handling. Fixed bugs. Initial working state. * Added better error handling. * Added error messages for tokens with inappropriate access rights. * Added back get_acr_cred. * Fixed problems from merge conflict. * Updated names of imports from ._models.py to fix pylance erros. * Removed random imports. Co-authored-by: Haroon Feisal <[email protected]> * Remove --location since location must be same as managed env * Add options for flag names: --env-vars and --registry-srever * Empty string to clear env_vars * Default revisions_mode to single * Infer acr credentials if it is acr and credentials are not provided * fix help msg * if image is hosted on acr, and no registry server is supplied, infer the registry server * Added subgroups (Ingress, Registry, Secret) and updated revisions (Azure#18) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Modified update_containerapp_yaml to support updating from non-current revision. Authored-by: Haroon Feisal <[email protected]> * More p0 fixes (Azure#20) * Remove --registry-login-server, only allow --registry-server * Rename --environment-variables to --env-vars * If no image is supplied, use default quickstart image * Update help text (Azure#21) * Update help text * Update punctuation * master -> main * New 1.0.1 version * Added identity commands + --assign-identity flag to containerapp create (#8) * Added identity show and assign. * Finisheed identity remove. * Added helps, updated identity remove to work with identity names instead of requiring identity resource ids. * Moved helper function to utils. * Require --identities flag when removing identities. * Added message for assign identity with no specified identity. * Added --assign-identity flag to containerapp create. * Moved assign-identity flag to containerapp create. * Fixed small logic error on remove identities when passing duplicate identities. Added warnings for certain edge cases. * Updated param definition for identity assign --identity default. * Added identity examples in help. * Made sure secrets were not removed when assigning identities. Added tolerance for [system] passed with capital letters. * Fixed error from merge. Co-authored-by: Haroon Feisal <[email protected]> * Dapr Commands (Azure#23) * Added ingress subgroup. * Added help for ingress. * Fixed ingress traffic help. * Added registry commands. * Updated registry remove util to clear secrets if none remaining. Added warning when updating existing registry. Added registry help. * Changed registry delete to remove. * Added error message if user tries to remove non assigned registry. * Changed registry add back to registry set. * Added secret subgroup commands. * Removed yaml support from secret set. * Changed secret add to secret set. Updated consistency between secret set and secret delete. Added secret help. Require at least one secret passed with --secrets for secret commands. * Changed param name for secret delete from --secrets to --secret-names. Updated help. * Changed registry remove to registry delete. * Fixed bug in registry delete. * Added revision mode set and revision copy. * Added dapr enable and dapr disable. Need to test more. * Added list, show, set dapr component. Added dapr enable, disable. * Added delete dapr delete. * Added helps and param text. * Changed dapr delete to dapr remove to match with dapr set. * Commented out managed identity for whl file. * Uncommented. Co-authored-by: Haroon Feisal <[email protected]> * Rename --image-name to --container-name * Remove allowInsecure since it was messing with the api parsing * Fix for env var being empty string * Rename to --dapr-instrumentation-key, only infer ACR credentials if --registry-server is provided * Remove az containerapp scale * Fix delete containerapp errors * Remove ingress, dapr flags from az containerapp update/revision copy * Fix revision list -o table * Help text fix * Bump extension to 0.1.2 * Update managed identities and Dapr help text (Azure#25) * Update managed identities and Dapr help text * Update Dapr flags * Add secretref note * Env var options + various bug fixes (Azure#26) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. Co-authored-by: Haroon Feisal <[email protected]> * Fixed style issues, various bug fixes (Azure#27) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. Co-authored-by: Haroon Feisal <[email protected]> * Update src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py Co-authored-by: Xing Zhou <[email protected]> * Specific Error Types + Bugfixes (Help, remove app-subnet-resource-id, removed env-var alias, added help text for --name) (Azure#28) * Moved dapr arguments to env as a subgroup. * Added env variable options. * Changed revision mode set to revision set-mode. * Added env var options to revision copy. * Fixed revision copy bug related to env secret refs. * Changed registry and secret delete to remove. Added registry param helps. Removed replica from table output and added trafficWeight. * Updating warning text. * Updated warning text once more. * Made name optional for revision copy if from-revision flag is passed. * Fixed whitespace style issues. * Styled clients and utils to pass pylint. * Finished client.py pylint fixes. * Fixed pylint issues. * Fixed flake8 commands and custom. * Fixed flake issues in src. * Added license header to _sdk_models. * Added confirmation for containerapp delete. * Update helps for identity, revision. Removed env-var alias for set-env-vars. Added name param help. * Removed app-subnet-resource-id. * Updated infrastructure subnet param help. * Check if containerapp resource exists before attempting to delete. * Added check before deleting managed env. * Changed error types to be more specific. * Removed check before deletion. Removed comments. Co-authored-by: Haroon Feisal <[email protected]> * Reset to 0.1.0 version, remove unneeded options-list * Update min cli core version * Fixed style issues. (Azure#30) Co-authored-by: Haroon Feisal <[email protected]> * Fix linter issues * Use custom-show-command * Removed --ids from revision, secret, registry list. * Add linter exclusions * Fix polling on delete containerapp * Fix error handling * Add Container App Service * Fix flake linter * Fix help text * Mark extension as preview * Add python 3.9 and 3.10 as supported * Remove registries and secrets from az containerapp update, in favor of registry and secret subgroup * Fix YAML not working * Move import to inside deserialize function * Dapr moved from Template to Configuration * Use aka.ms link for containerapps yaml * Updated dapr enable/disable to current spec. * Fixed oversight. * Remove revisions-mode from containerapp update * Fixed dapr enable property names. (Azure#47) Co-authored-by: Haroon Feisal <[email protected]> * Fix exceptions with using --yaml in containerapp create/update * Rename history msg * Include fqdn in containerapp table output * Added ingress messages. * Revert history msg * Add basic test case * Remove managed-identity support for first release of CLI * Need to investigate test flakiness * Update _help.py removing duplicate help * Added prototype of container up. * Fixed deploy from acr registry image infer credentials issue. * Tried to add source. * Added acr build. * Finished acr build functionality. * Added acr create functionality and pull registry from existing containerapp if it exists. * Fixed bugs. * Check if rg exists and create one with name if it doesn't. * initial containerapp ssh implementation * fix interactive commands (vim); handle ctrl + c instead of exiting * fix style and linter issues * Added disable verbose. Moved utils into utils.py. * fix for ssh for windows clients * fix for unix * Disable verbose now uses sdk poller so it gives running animation. * Added helps for params. Added error handling for non acr registry passed with source. Ignore param disable_warnings for create and no_wait for up. * Updated disable_warnings ignore. Removed disable_warnings from update_containerapp. * add terminal resizing * reorganize code; implement terminal resizing, add startup command param, etc * organize code, remove token from warning output * add validations, add replica commands * use the correct API for fetching default container; remove is_preview * Renamed silent to quiet. * Fixed style issues. * add log streaming, bump version number and add to HISTORY.rst * add basic ssh test * Added workspace name and fqdn to dry_run_str. Added indicators of if the resources are new or existing to dry_run_str. * fix ssh test for windows * Check RP for location when not provided. Open Dockerfile and use EXPOSE for CA port. * fix windows arrow keys after exit * fix typo, add logstream test, remove token from logstream output * Removed print statement. * Updated dockerfile expose automatic ingress feature. * Removed dry run str, added dry run obj instead. * use bearer auth; fix --command bug * add handling for smooth transition to new URL path * Fixed merge conflict. * fix merge conflicts * Create env if name passed and it doesn't exist. * Added missing import from merge. * Added prototype for new environment workflow. * Finished environment logic. * Minor updates before demo. * add 'az containerapp github up' (wip) * various fixes for demo * rearrange github up code * merge haroonf/containerappup * start up refactor * add --repo to up and refactor up * reorganize code more; fix various bugs * fix linter issues, fix lingering exec/tail improvements * update history * update output * bug fixes for --repo * fix --source bug * fix --source * minor bug fixes * Added API change. * Finished API change, added helloworld image auto ingress, checked provisioning state beforehand. * fixes for sisira's comments * fix minor typo * bug fix where commands fail if providing registry creds * Fixed style issues. * Updated help and version text. Co-authored-by: Calvin Chan <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]> Co-authored-by: Sisira Panchagnula <[email protected]> * Fixed small issue with test. * Removed flake exclusions and removed type=str from params. * Fixed repo bug when searching for dockerfile, increased timeout on github action complete, fixed datetime import issue from style fix. * Added env var changes. * Assume port if ingress is provided with image and port is not. * Fixed small helloworld error. * Fixed logger typo. * Search for acr before creating one. * Fixed bug where only --environment is passed. Changed hash on acr name to make it more unique. Tiny change in find_existing_acr. * error out if dockerfile not found (--repo) * Fixed bug with --image. Changed logger warning output. Disabled warnings on the registry update code for containerapp up. Added HELLOWORLD constant. * Disabled no_wait. Added better error handling for up API calls. Updated ingress infer warning text. Fixed typo. Moved create_if_needed to environment. * fix ACR length cap; enforce name/secret limits; trigger GH action if needed (update with GH actions already extant); fail command if GH action ends in failure * force exact match for ACR retrieval (prevents secrets issues for --repo) * fix hashing and add GH validations * don't retrieve a registry if one provided; take RG from env if possible * Fixed --registry-server with --image bug. (Azure#78) * Fixed --registry-server with --image bug. * Fixed style issues. Co-authored-by: Haroon Feisal <[email protected]> * use SP creds if provided * fix github actions (less polling) * Added prototype for env check. * Honor location and environment passed to create new containerapp (even if a CA exists on subscription with the same name) (Azure#79) * Create new Containerapp if user passes env name even if a CA exists with the same name. * Create a new app if location doesn't match any other app. * Fixed small bug, added better error handling for multiple environments with the same name on subscription. Co-authored-by: Haroon Feisal <[email protected]> * print created SP name/id; prevent using ACR names longer than 20 chars with --repo; add basic --image test * fix style; add license header * Finished core logic. * add max core cli version 2.36.0 * make ACR name more unique (must be globally unique) * Finished logic. * sort workflows by date before selecting one * log workflow * Added error message with eligible locations if users pass uneligible location. * Added function to check if env already exists so we don't try to update the location value of an existing environment. * Added error handling for location northcentralusstage. Added list of eligible locations to unallowed location error message. * Small fixes, implemented check_env_name_on_rg. * location bug fix * fix style * bump version number * Updates to tests (Azure#82) * Updates to update tests * Update api version for create * Remove recordings (Azure#83) * prevent using --only-show-errors, --output, -o in up * Added FileShare commands. (Azure#84) * Added FileShare commands. * Updated params to match spec. Added param help. * Added help. Removed --ids support. * Removed automatic import statements. * Added back type in help. * Added tests. * Updated param names to better reflect AzureFile dependency. * Added validation to ensure share name and account name are longer than 2 characters. Seems to be an API issue. * Added warning message if user is updating existing storage. Co-authored-by: Haroon Feisal <[email protected]> * Fixed bug. (Azure#86) Co-authored-by: Haroon Feisal <[email protected]> * register log analytics resource provider if not registered when creating an env with up * fix style * Fixed linter issue. * fix linter issues * update history file * Moved constant to constants.py. * add timeout to container app ping for ssh/logstream * Various tests (Ingress, Traffic, Dapr, Env) (Azure#87) * Added env tests. * Added ingress tests. * Added ingress traffic tests. * Fixed small issue. * Added remove test for dapr components. * Removed live_only from containerapp commands. Added recordings. * Removed live_only from env commands. * Removed sleep 60 since we use poll for delete anyways. * Wrote better dapr-component tests. Fixed old tests that required live only. Co-authored-by: Haroon Feisal <[email protected]> * Revert "Various tests (Ingress, Traffic, Dapr, Env) (Azure#87)" (Azure#88) This reverts commit 40ca5b9. * Reverted fileshare. (Azure#90) Co-authored-by: Haroon Feisal <[email protected]> * Tests (dapr-components, env, ingress, traffic) (Azure#89) * Added env tests. * Added ingress tests. * Added ingress traffic tests. * Fixed small issue. * Added remove test for dapr components. * Removed live_only from containerapp commands. Added recordings. * Removed live_only from env commands. * Removed sleep 60 since we use poll for delete anyways. * Wrote better dapr-component tests. Fixed old tests that required live only. * Added suppression for log analytics dummy secrets. * Rerecorded tests. * rerecord failing tests * Updated credscan. Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Silas Strawn <[email protected]> * adding certs cmd & test * adding hostname cmds & test * changes based on comments * changes based on comments Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Calvin Chan <[email protected]> Co-authored-by: Haroon Feisal <[email protected]> Co-authored-by: Anthony Chu <[email protected]> Co-authored-by: Xing Zhou <[email protected]> Co-authored-by: Silas Strawn <[email protected]> Co-authored-by: Sisira Panchagnula <[email protected]>
file clean up
Dan branch sync
Add CNF NFD generation to build command
* build: add cicd pipeline (#7) * build: move update version logic to workflow (#8) * build: Run CI on multiple python version (#38) * build: Run CI in Python 3.8-3.11 * build: remove pull request event for CI to avoid duplicate runs * test: add test cases for commands (#40) * fix: error when register API with long description spec (#41) * test: add test cases for optional parameters (#42) * feat!: remove file name param (#43) * fix: error not thrown when import spec with >3MB file (#44) * feat!: remove state param for deployment commands (#46) * fix: API title created by register command is not same with provided spec (#47) * feat!: redesign parameters to specify APIM instance for import-from-apim command (#45) * test: clean up legacy test cases (#48) * test: add test cases for command examples (#49) * docs: update help message per feedback (#50) * build: bump version to 1.0.0 and add changelog (#51) * fix: some parameters should be required in import-specification and deployment command (#53) * feat!: rename parameter names to align with other Azure CLI command experience (#52) * test: enable test for import-from-apim (#54) * test: fix show service test case (#55) * docs: update changelog for 1.0.0 (#56) * Update HISTORY.rst - jukasper updated changelog * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * docs: update readme for apic-extension (#57) * fix: cannot run create command against existing resource (#58) * fix: cannot run create command against existing resource * style: fix style * build: remove cicd pipeline (#59) * build: resolve review comments (#60) --------- Co-authored-by: Julia Kasper <[email protected]>
* build: add cicd pipeline (Azure#7) * build: move update version logic to workflow (Azure#8) * build: Run CI on multiple python version (Azure#38) * build: Run CI in Python 3.8-3.11 * build: remove pull request event for CI to avoid duplicate runs * test: add test cases for commands (Azure#40) * fix: error when register API with long description spec (Azure#41) * test: add test cases for optional parameters (Azure#42) * feat!: remove file name param (Azure#43) * fix: error not thrown when import spec with >3MB file (Azure#44) * feat!: remove state param for deployment commands (Azure#46) * fix: API title created by register command is not same with provided spec (Azure#47) * feat!: redesign parameters to specify APIM instance for import-from-apim command (Azure#45) * test: clean up legacy test cases (Azure#48) * test: add test cases for command examples (Azure#49) * docs: update help message per feedback (Azure#50) * build: bump version to 1.0.0 and add changelog (Azure#51) * fix: some parameters should be required in import-specification and deployment command (Azure#53) * feat!: rename parameter names to align with other Azure CLI command experience (Azure#52) * test: enable test for import-from-apim (Azure#54) * test: fix show service test case (Azure#55) * docs: update changelog for 1.0.0 (Azure#56) * Update HISTORY.rst - jukasper updated changelog * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst * docs: update readme for apic-extension (#57) * fix: cannot run create command against existing resource (Azure#58) * fix: cannot run create command against existing resource * style: fix style * build: remove cicd pipeline (Azure#59) * build: resolve review comments (Azure#60) --------- Co-authored-by: Julia Kasper <[email protected]>
Adding support for Azure CosmosDB for MongoDB(RU) to Azure CosmosDB for MongoDB(vCore) container copy
* build: add cicd pipeline (#7) * build: move update version logic to workflow (#8) * build: Run CI on multiple python version (#38) * build: Run CI in Python 3.8-3.11 * build: remove pull request event for CI to avoid duplicate runs * refactor: add apic api update example * tests: add test case * fix: fix style * fix: fix test case * fix: fix test case * fix: fix test case & add recording * fix: remove bad command prefix * refactor: optimize test case code * refactor: remove duplicate example for apic create * fix: fix style * feat: add examples for create & update apic service with system assigned identity * fix: fix external doc extracting bug in spec * fix: remove extra print * fix: fix style * fix: fix style * fix: fix style * fix: fix style * tests: fix test case * refactor: remove external docs from tags * tests: update test case * refactor: remove summary setting in api register * feat: support custom metadata export only * fix: fix test case * tests: add test case * fix: fix arg type * refactor: add help example * fix: fix bad logic of link format * refactor: remove extra example * refactor: update example * doc: update 1.0.1 release history * refactor: change note style * fix: fix * fix: remove breaking change label * build: bump version to 1.1.0 * Update V1.1.0 history (#71) * Update HISTORY.rst * Update HISTORY.rst * Update HISTORY.rst --------- Co-authored-by: Julia Kasper <[email protected]> * test: fix test cases * build: remove files to get ready for release --------- Co-authored-by: Chaoyi Yuan <[email protected]> Co-authored-by: Julia Kasper <[email protected]>
Update to control plane v2023-06-01
* build: add cicd pipeline (#7) * build: move update version logic to workflow (#8) * build: Run CI on multiple python version (#38) * build: Run CI in Python 3.8-3.11 * build: remove pull request event for CI to avoid duplicate runs * feat: enable openapi spec from url in api register (#74) * feat: enable openapi spec from url in api register * refactor: set spec definition as link format when link provided * fix: fix style * test: add error handling case for testing invalid spec url * fix: fix test case * fix: use 404 response url * test: update case * test: update test case * refactor: update error logic * test: update test case to setup live test pipeline (#76) * test: update test case to setup live test pipeline (#75) * test: update test case * update * . * . * . * . * . * . * . * . * . * . * . * test: update test case * refactor: enable both identity * fix: bad if else * fix: fix bad parameter * refactor: add example (#77) * refactor: add example * fix: update params * fix: bad api id * refactor: add @filename.json examples (#78) * refactor: add example * fix: update params * fix: bad api id * refactor: add @filename.json examples * refactor: update * refactor: add error handling (#79) * refactor: add error handling * refactor: catch internal error * fix: revert the change * feat: support APIM/APIC sync (#80) * feat: add APIM/APIC sync commands * feat: rename apim to azure-api-management * style: fix code style * fix: sync property names with new API spec * Revert "fix: sync property names with new API spec" This reverts commit 04da67e. --------- Co-authored-by: frankqianms <[email protected]> * feat: resolve feedback and fix examples (#82) * feat: resolve feedback and fix examples * style: fix code style * feat: amazon api gateway sync (#81) * feat: add APIM/APIC sync commands * feat: rename apim to azure-api-management * style: fix code style * fix: sync property names with new API spec * feat: add aws api gateway sync command * Revert "fix: sync property names with new API spec" This reverts commit 04da67e. * refactor: add amazonApiGatewaySource * refactor: refactoring apim sync and amazon sync * refactor: refactor cmd structure to make apim and aws sync seperated * fix: remove log print * chore: generate new cmds * refactor: update version and remove import * feat: add `apic integration create amazon-api-gateway` * fix: style * fix: change query param api-version * revert changes in _delete.py * fix: some neede fixs * fix: add the help sentence * refactor: make params clear * refactor: handle msi-resource-id * refacor: revert flatten of apim resource * fix: use 06-01-preiew currently * fix: style * refactor: arg groups * fix: bad short param name * chore: re-generate * fix: old resource_id name * chore: arg group * chore: naming * fix: fix according to comments * chore: update * fix: style --------- Co-authored-by: Chaoyi Yuan <[email protected]> * feat: add import amazon-api-gateway cmd (#83) * feat: add import amazon-api-gateway cmd * feat: change arg group and update parameter name --------- Co-authored-by: Chaoyi Yuan <[email protected]> * fix: use older version API (#84) * feat: rename command and param names (#85) * feat: rename command and param names * doc: update comments * doc: update sample * test: add test case for sync cmd `apic integration create apim` and `apic integration create aws` (#86) * test: add test case for apim sync * refactor: refactor for apim preparer * refactor: refactoring case and utils, optimize checkers * chore: remove print and add explaination * refactor: rename file * fix: try to fix error determing the version * revert: Remove specific azure-cli and azure-core installations * test: add aws sync testcase (#87) * test: add test case for aws sync command * fix: remove key value * fix: remove pip install * chore: renaming constants * refactor: update the utils and test case * refactor: updated * fix: workaround for urllib3 package (#88) * Revert "fix: workaround for urllib3 package (#88)" (#90) This reverts commit 1d508f4. * build: 1.2.0 beta 1 release * build: remove CI and CD files * doc: improve history * fix: set extention version to be preview * refactor: integration examples and bad example for `apic update` (#91) * refactor: integration examples * fix: apic update example * chore: update log * test: add import-aws case and modify region --------- Co-authored-by: Chaoyi Yuan <[email protected]> Co-authored-by: Chaoyi Yuan <[email protected]>
* build: add cicd pipeline (Azure#7) * build: move update version logic to workflow (Azure#8) * build: Run CI on multiple python version (Azure#38) * build: Run CI in Python 3.8-3.11 * build: remove pull request event for CI to avoid duplicate runs * feat: enable openapi spec from url in api register (Azure#74) * feat: enable openapi spec from url in api register * refactor: set spec definition as link format when link provided * fix: fix style * test: add error handling case for testing invalid spec url * fix: fix test case * fix: use 404 response url * test: update case * test: update test case * refactor: update error logic * test: update test case to setup live test pipeline (Azure#76) * test: update test case to setup live test pipeline (Azure#75) * test: update test case * update * . * . * . * . * . * . * . * . * . * . * . * test: update test case * refactor: enable both identity * fix: bad if else * fix: fix bad parameter * refactor: add example (Azure#77) * refactor: add example * fix: update params * fix: bad api id * refactor: add @filename.json examples (Azure#78) * refactor: add example * fix: update params * fix: bad api id * refactor: add @filename.json examples * refactor: update * refactor: add error handling (Azure#79) * refactor: add error handling * refactor: catch internal error * fix: revert the change * feat: support APIM/APIC sync (Azure#80) * feat: add APIM/APIC sync commands * feat: rename apim to azure-api-management * style: fix code style * fix: sync property names with new API spec * Revert "fix: sync property names with new API spec" This reverts commit 04da67e. --------- Co-authored-by: frankqianms <[email protected]> * feat: resolve feedback and fix examples (Azure#82) * feat: resolve feedback and fix examples * style: fix code style * feat: amazon api gateway sync (Azure#81) * feat: add APIM/APIC sync commands * feat: rename apim to azure-api-management * style: fix code style * fix: sync property names with new API spec * feat: add aws api gateway sync command * Revert "fix: sync property names with new API spec" This reverts commit 04da67e. * refactor: add amazonApiGatewaySource * refactor: refactoring apim sync and amazon sync * refactor: refactor cmd structure to make apim and aws sync seperated * fix: remove log print * chore: generate new cmds * refactor: update version and remove import * feat: add `apic integration create amazon-api-gateway` * fix: style * fix: change query param api-version * revert changes in _delete.py * fix: some neede fixs * fix: add the help sentence * refactor: make params clear * refactor: handle msi-resource-id * refacor: revert flatten of apim resource * fix: use 06-01-preiew currently * fix: style * refactor: arg groups * fix: bad short param name * chore: re-generate * fix: old resource_id name * chore: arg group * chore: naming * fix: fix according to comments * chore: update * fix: style --------- Co-authored-by: Chaoyi Yuan <[email protected]> * feat: add import amazon-api-gateway cmd (Azure#83) * feat: add import amazon-api-gateway cmd * feat: change arg group and update parameter name --------- Co-authored-by: Chaoyi Yuan <[email protected]> * fix: use older version API (Azure#84) * feat: rename command and param names (Azure#85) * feat: rename command and param names * doc: update comments * doc: update sample * test: add test case for sync cmd `apic integration create apim` and `apic integration create aws` (Azure#86) * test: add test case for apim sync * refactor: refactor for apim preparer * refactor: refactoring case and utils, optimize checkers * chore: remove print and add explaination * refactor: rename file * fix: try to fix error determing the version * revert: Remove specific azure-cli and azure-core installations * test: add aws sync testcase (Azure#87) * test: add test case for aws sync command * fix: remove key value * fix: remove pip install * chore: renaming constants * refactor: update the utils and test case * refactor: updated * fix: workaround for urllib3 package (Azure#88) * Revert "fix: workaround for urllib3 package (Azure#88)" (Azure#90) This reverts commit 1d508f4. * build: 1.2.0 beta 1 release * build: remove CI and CD files * doc: improve history * fix: set extention version to be preview * refactor: integration examples and bad example for `apic update` (Azure#91) * refactor: integration examples * fix: apic update example * chore: update log * test: add import-aws case and modify region --------- Co-authored-by: Chaoyi Yuan <[email protected]> Co-authored-by: Chaoyi Yuan <[email protected]>
Ninpan/app modules
* build: add cicd pipeline (#7) * build: move update version logic to workflow (#8) * build: Run CI on multiple python version (#38) * build: Run CI in Python 3.8-3.11 * build: remove pull request event for CI to avoid duplicate runs * feat: enable openapi spec from url in api register (#74) * feat: enable openapi spec from url in api register * refactor: set spec definition as link format when link provided * fix: fix style * test: add error handling case for testing invalid spec url * fix: fix test case * fix: use 404 response url * test: update case * test: update test case * refactor: update error logic * test: update test case to setup live test pipeline (#76) * test: update test case to setup live test pipeline (#75) * test: update test case * update * . * . * . * . * . * . * . * . * . * . * . * test: update test case * refactor: enable both identity * fix: bad if else * fix: fix bad parameter * refactor: add example (#77) * refactor: add example * fix: update params * fix: bad api id * refactor: add @filename.json examples (#78) * refactor: add example * fix: update params * fix: bad api id * refactor: add @filename.json examples * refactor: update * refactor: add error handling (#79) * refactor: add error handling * refactor: catch internal error * fix: revert the change * feat: support APIM/APIC sync (#80) * feat: add APIM/APIC sync commands * feat: rename apim to azure-api-management * style: fix code style * fix: sync property names with new API spec * Revert "fix: sync property names with new API spec" This reverts commit 04da67e. --------- Co-authored-by: frankqianms <[email protected]> * feat: resolve feedback and fix examples (#82) * feat: resolve feedback and fix examples * style: fix code style * feat: amazon api gateway sync (#81) * feat: add APIM/APIC sync commands * feat: rename apim to azure-api-management * style: fix code style * fix: sync property names with new API spec * feat: add aws api gateway sync command * Revert "fix: sync property names with new API spec" This reverts commit 04da67e. * refactor: add amazonApiGatewaySource * refactor: refactoring apim sync and amazon sync * refactor: refactor cmd structure to make apim and aws sync seperated * fix: remove log print * chore: generate new cmds * refactor: update version and remove import * feat: add `apic integration create amazon-api-gateway` * fix: style * fix: change query param api-version * revert changes in _delete.py * fix: some neede fixs * fix: add the help sentence * refactor: make params clear * refactor: handle msi-resource-id * refacor: revert flatten of apim resource * fix: use 06-01-preiew currently * fix: style * refactor: arg groups * fix: bad short param name * chore: re-generate * fix: old resource_id name * chore: arg group * chore: naming * fix: fix according to comments * chore: update * fix: style --------- Co-authored-by: Chaoyi Yuan <[email protected]> * feat: add import amazon-api-gateway cmd (#83) * feat: add import amazon-api-gateway cmd * feat: change arg group and update parameter name --------- Co-authored-by: Chaoyi Yuan <[email protected]> * fix: use older version API (#84) * feat: rename command and param names (#85) * feat: rename command and param names * doc: update comments * doc: update sample * test: add test case for sync cmd `apic integration create apim` and `apic integration create aws` (#86) * test: add test case for apim sync * refactor: refactor for apim preparer * refactor: refactoring case and utils, optimize checkers * chore: remove print and add explaination * refactor: rename file * fix: try to fix error determing the version * revert: Remove specific azure-cli and azure-core installations * test: add aws sync testcase (#87) * test: add test case for aws sync command * fix: remove key value * fix: remove pip install * chore: renaming constants * refactor: update the utils and test case * refactor: updated * fix: workaround for urllib3 package (#88) * Revert "fix: workaround for urllib3 package (#88)" (#90) This reverts commit 1d508f4. * build: 1.2.0 beta 1 release * build: remove CI and CD files * doc: improve history * fix: set extention version to be preview * refactor: integration examples and bad example for `apic update` (#91) * refactor: integration examples * fix: apic update example * feat: add api-analysis rules (#89) * feat: analysi rule init * feat: add create cmd * feat: add create and delete api-analysis commands * feat: add import-ruleset and export-ruleset commands * fix: update aaz * fix: registered * fix: examples * fix: fix style * refactor: renaming * refactor: regenerate aaz * fix: fix codes * fix: fix logics * fix: style * fix: rename parameter service name * fix: change api-analysis status to preview * fix: integration list * refactor: modify examples * feat: analysi rule init * feat: add create cmd * feat: add create and delete api-analysis commands * feat: add import-ruleset and export-ruleset commands * fix: update aaz * fix: registered * fix: examples * fix: fix style * refactor: renaming * refactor: regenerate aaz * fix: fix codes * fix: fix logics * fix: style * fix: change api-analysis status to preview * fix: change short name of service name * fix: apic update example * fix: examples and default value * chore: example * fix: bad parameter short names * fix: downgrade api version * fix: set default workspace for list,show,update api-analysis * refactor: integration examples * fix: style * chore: update log * test: add import-aws case and modify region * feat: add import apim and deperacate import-from-apim, add analysis create and list test cases * fix: correctly deprecate import-from-apim * test: add apianalysis test cases * build: bump up to 1.2.0b2 * test: add api-analysis update testcase * build: change log of 1.2.0b2 * chore: unregister the filter * fix: better methods name and remove extra lint disable * refactor: set default analyzer-type in aaz * refactor: remove preview tag for some integration commands and hide the analyzer_type param * chore: update spec for filter param * fix: set default analyzer_type correctly * fix: import apim fix (#92) * add CD * rename * upgrade upload-artifact * fix: fix missing apis param in import apim * fix: regenerate according to new spec * cd: remove cd file * test: update test cases * fix: fix spec version in register command * test: update test cases * test: update recordings * test: live test * fix: fix test cases of api analysis * fix: update recordings * fix: remove comment * fix: merge and align latest version * Update command_patches.py fix linter * fix: remove import cmds & preview tag of integrate cmds * test: remove uneeded test cases * fix: fix linter failures for auto generated params * test: update tests * Update HISTORY.rst * fix: remove extra yml * Update HISTORY.rst * test: update test cases and recordings * fix: fix cases --------- Co-authored-by: Chaoyi Yuan <[email protected]> Co-authored-by: Chaoyi Yuan <[email protected]>
* add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17) * update release notes and version for connectedk8s cli extension (#18) * remove redundant test files specific to forked repo CI checks --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]>
* add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update python version to 3.13 (#12) * changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17) * [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20) * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * Parameterize for airgapped clouds (#5) * Add parameterization for the airgapped clouds * Fix azdev style * MCR path function * azdev, ruff, and mypy --------- Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> * Oras client fix to work with different MCRs (#6) Co-authored-by: mmcneal <[email protected]> * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * Update cluster diagnostics image to 1.29.3 (#7) * Update cluster diagnostics helm chart to 1.29.3 * Fix lint issues --------- Co-authored-by: bgriddaluru <[email protected]> * RBAC deprecation & fix the issue * typo * fix comments * update tests * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * rebase * fix tests * fix version * fix mypy, lint * fix test * fix test * fix test * fix test * fix test * rename test * deprecate flags * rebase * rebase * bump version for release --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> * remove redundant test files --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: Vineeth Thumma <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]>
* add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update python version to 3.13 (#12) * changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17) * [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20) * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * Parameterize for airgapped clouds (#5) * Add parameterization for the airgapped clouds * Fix azdev style * MCR path function * azdev, ruff, and mypy --------- Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> * Oras client fix to work with different MCRs (#6) Co-authored-by: mmcneal <[email protected]> * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * Update cluster diagnostics image to 1.29.3 (#7) * Update cluster diagnostics helm chart to 1.29.3 * Fix lint issues --------- Co-authored-by: bgriddaluru <[email protected]> * RBAC deprecation & fix the issue * typo * fix comments * update tests * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * rebase * fix tests * fix version * fix mypy, lint * fix test * fix test * fix test * fix test * fix test * rename test * deprecate flags * rebase * rebase * bump version for release --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> * remove hardcoded public ARM endpoint url for fairfax and mooncake (#24) * Bug Fix for FFX mcr url (#22) * [connectedk8s] update release notes and version (#26) * remove redundant test files * remove change not relevant to connectedk8s release --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: Vineeth Thumma <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> Co-authored-by: hapate <[email protected]>
* add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (Azure#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (Azure#8) * update python version to 3.13 (Azure#12) * changes to support gateway association/disassociation for api version '2025-08-01-preview' (Azure#17) * [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (Azure#20) * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (Azure#4) * forcedelete * format * add code owner * mypy * Parameterize for airgapped clouds (Azure#5) * Add parameterization for the airgapped clouds * Fix azdev style * MCR path function * azdev, ruff, and mypy --------- Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> * Oras client fix to work with different MCRs (Azure#6) Co-authored-by: mmcneal <[email protected]> * fix CI testcases for nodepool image issues (Azure#8) * update errors for the config and connectivity issues (Azure#11) * update errors * format * style * update python version to 3.13 (Azure#12) * Update cluster diagnostics image to 1.29.3 (Azure#7) * Update cluster diagnostics helm chart to 1.29.3 * Fix lint issues --------- Co-authored-by: bgriddaluru <[email protected]> * RBAC deprecation & fix the issue * typo * fix comments * update tests * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (Azure#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (Azure#8) * update errors for the config and connectivity issues (Azure#11) * update errors * format * style * update python version to 3.13 (Azure#12) * rebase * fix tests * fix version * fix mypy, lint * fix test * fix test * fix test * fix test * fix test * rename test * deprecate flags * rebase * rebase * bump version for release --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> * remove hardcoded public ARM endpoint url for fairfax and mooncake (Azure#24) * Bug Fix for FFX mcr url (Azure#22) * [connectedk8s] update release notes and version (Azure#26) * remove redundant test files * remove change not relevant to connectedk8s release --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: Vineeth Thumma <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> Co-authored-by: hapate <[email protected]>
* [Release] Update index.json for extension [ spring-1.28.3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135708908&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b86c1c6cc8a7ed8ab98d8ef232a271ab198af094
* Temporarily removed the extension: aks-agent (#9115)
* Revert "Temporarily removed the extension: aks-agent (#9115)" (#9116)
This reverts commit ddc223c9434896ec971e79835d94ff46ca116987.
* Revert "Fix Neon extension: Unify command structure and remove preview status" (#9117)
* Revert "Fix Neon extension: Unify command structure and remove preview status…"
This reverts commit a973f801f0a55b2cef585982852c364c708d5ee1.
* Bump version from 1.0.0b4 to 1.0.0b6
* [Release] Update index.json for extension [ neon-1.0.0b6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135751142&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/64ab52906fe23694a8f957a80268da563663ddca
* {AKS} Remove the sku preview flag from help command for AKS automatic (#9120)
* [Release] Update index.json for extension [ aks-preview-18.0.0b32 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135839673&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7d5b6575a74ab795aa41a7fe6c42dc6932b6d193
* [ Workload-Orchestration ] Add Context & Solution Management Commands (#9037)
* added
* commit
* Made Changes
* Added change
* Made changes
* List solution revisions and instances
* Made changes rr
* Made change
---------
Co-authored-by: Atharva <[email protected]>
Co-authored-by: Manaswita Chichili <[email protected]>
* [AKS] `az aks create`: Add new parameter `--kms-infrastructure-encryption` to enable KMS infrastructure encryption. (#9071)
* Revert "[Release] Update index.json for extension [ neon-1.0.0b5 ]" (#9118)
This reverts commit 616990f9572fb222bf6053f617b014ec34eda4e9.
* [Release] Update index.json for extension [ aks-preview-18.0.0b33 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135846382&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/042aa4e33a6085925b71e3b275500601f13e8979
* [ServiceConnector-passwordless] bump version for psycopg2-binary (#9075)
* bump version for psycopg2-binary
* update
* Update CLI command descriptions for newrelic (#9119)
* [Release] Update index.json for extension [ new-relic-1.0.2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135848078&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e1df567b8f3ba18f6382b1aa87c591308de8b707
* [Release] Update index.json for extension [ serviceconnector-passwordless-3.3.5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135848077&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/42db1eb7e72d87b899efa382e0aa737982d53604
* Feature/ga release (#9123)
* Update version from 1.0.0b6 to 1.0.0
* Update HISTORY.rst with release information
* [Release] Update index.json for extension [ neon-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135957068&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/18785cf742c9611cae46cbce3fed1e55d0f990e0
* aks add nodepool add to support machines pool (#9121)
Co-authored-by: Jianping Zeng <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b34 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135967911&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1d48b879bc1179ca29059c677bab35e70e71972f
* {AKS} Vendor new SDK and bump API version to 2025-07-02-preview (#9131)
* [Release] Update index.json for extension [ aks-preview-18.0.0b35 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135984989&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b79f617d7ff5fb6c578dc7d00e8a1bfd7831f164
* Added changes (#9130)
Co-authored-by: Atharva <[email protected]>
* [Release] Update index.json for extension [ workload-orchestration-3.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135985917&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/715f0c64382b3a6db5dfc9310b186a959f87a459
* [SCVMM] Fixed create_from_machines command for VM Instance creation (#9107)
* [Release] Update index.json for extension [ scvmm-1.2.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136097084&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/06d116ebcf1386c562b75e3cc7fd3acf37bc64ce
* [k8s-extension] Update extension CLI to v1.7.0 (#9126)
* add pester tests for k8s-extension
* fix testcases for nodepool image issues (#5)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* Extend ContainerInsights Extension for high log scale mode support (#9)
* update python version to 3.13 (#10)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* Add k8s-extension troubleshoot phase 1: Infrastructure setup. (#11)
* [k8s-extension] Update extension CLI to v1.7.0 (#13)
* remove redundant test files
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bragi92 <[email protected]>
Co-authored-by: Long Wan <[email protected]>
Co-authored-by: Andres Borja <[email protected]>
* [Release] Update index.json for extension [ k8s-extension-1.7.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136097815&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/40c0147fe008dcf56c451193d06cc8f54136b525
* Fix help text for `fleet list` command (#9114)
* [confcom] Adding standalone fragment support (#9097)
* ensure that oras discover doesn't error when the remote image doesn't exist
* updating version
* adding print for binary version
* commenting out some tests due to docker incompatibility
* pull image before saving to tar
---------
Co-authored-by: Heather Garvison <[email protected]>
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136107318&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/bca2ea1679e62d67a08edd9c4396d4d53b83c462
* feat: Add Neon PostgreSQL preview API commands with parameter mapping… (#9133)
* feat: Add Neon PostgreSQL preview API commands with parameter mapping fixes
- Added 13 new commands for Neon PostgreSQL 2025-06-23-preview API
- Fixed critical parameter mapping issues in endpoint/database/role create commands
- Added comprehensive test suite with 6 test methods covering all functionality
- Updated azext_metadata.json with new command registrations
New Commands Added:
- az neon postgres endpoint create/list/delete
- az neon postgres neon-database create/list/delete
- az neon postgres neon-role create/list/delete
- az neon postgres get-postgres-version
Parameter Mapping Fixes:
- Fixed URL parameter mapping to use project_id/branch_id when available
- Resolved 'branch not found' errors in create commands
- Ensured proper API endpoint construction for nested resources
Testing:
- All 6 tests passing (100% success rate)
- Comprehensive validation of parameter mapping fixes
- Help command testing for all new commands
- Parameter validation testing for required fields
* Add command examples to fix linter violations
- Added examples for endpoint create command
- Added examples for get-postgres-version command
- Added examples for neon-role create command
- Added examples for neon-database create command
- Examples include common usage patterns and parameter variations
* fix: Add parameter mapping fixes for create commands
- Add project_id parameter to endpoint, role, and database create commands
- Implement URL parameter mapping with getattr/hasattr fallback pattern
- Fix endpoint list command parameter mapping
- Enable proper API URL construction for all create operations
- All tests passing (6/6) with real Azure resource validation
- Successfully tested with live Azure resources (endpoints, roles, databases created)
* fix: Correct help examples to fix linter errors
- Fix --attributes parameter examples to use proper JSON format instead of space-separated key=value pairs
- Replace invalid --suspend-timeout-minutes parameter with valid --size parameter in endpoint create example
- Resolve HIGH severity linter error: faulty_help_example_parameters_rule
- All help examples now use correct Azure CLI parameter syntax
* fix: Add linter exclusions for missing_command_example
- Add exclusions for neon postgres commands to resolve git-based linter check failure
- Commands have proper help examples but git-based linter doesn't detect them for AAZ commands
- Excludes: endpoint create, neon-role create, neon-database create, get-postgres-version
- Resolves HIGH severity missing_command_example linter error in CI pipeline
* feat: Remove wait commands and update to version 1.0.1b1
- Remove wait command files: branch/_wait.py, project/_wait.py, organization/_wait.py
- Update __init__.py files to remove wait command imports
- Add linter exclusions for require_wait_command_if_no_wait rule for all command groups
- Update version to 1.0.1b1 in setup.py
- Add comprehensive changelog entry to HISTORY.rst documenting all improvements:
* 25 commands across 8 command groups
* Parameter mapping fixes with real Azure resource validation
* Help examples and linter compliance
* Successful testing with live Azure subscription
- Wait commands removed as operations complete quickly and were unnecessary
- All tests passing (6/6) and functionality verified
* docs: Update HISTORY.rst with concise 1.0.1b1 changelog
- Streamline changelog entry for version 1.0.1b1
- Focus on key features: preview commands for new entities
- Highlight important changes: wait commands removal, linter exclusions
- Emphasize successful real Azure resources validation testing
- Maintain clear and readable documentation format
* [Release] Update index.json for extension [ neon-1.0.1b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136319375&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fb81781e93568fcc494b8f93ef71789d555270c3
* Release ArcAppliance CLI 1.6.0 (#9137)
Co-authored-by: Sai Sankar Gochhayat <[email protected]>
* [AKS] Add option `AzureLinux3` to `--os-sku` for `az aks nodepool add` and `az aks nodepool update` (#9095)
* chore: add AzureLinux3 OSSKU enum value
Signed-off-by: Calvin Shum <[email protected]>
* Complete AzureLinux3 OSSKU implementation
- Add changelog entry for version 18.0.0b29
- Bump version to 18.0.0b29
- Follow exact pattern from Ubuntu2204/Ubuntu2404 implementation
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
Signed-off-by: Calvin Shum <[email protected]>
* add recording test
* Revert "Complete AzureLinux3 OSSKU implementation"
This reverts commit 588cb2a6dd1cbdbce9d68ec14f12c711a838d737.
* Bump version to 18.0.0b34
- Add changelog entry for version 18.0.0b34
- Bump version to 18.0.0b34
* Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml
* Revert "Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml"
This reverts commit 5a20e1beced030fa0109f6b1d06ab187653617f2.
* Reapply "Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml"
This reverts commit e702361678f026883f01b139fe25c3ebd02fd953.
---------
Signed-off-by: Calvin Shum <[email protected]>
Co-authored-by: anujmaheshwari1 <[email protected]>
Co-authored-by: Claude <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b36 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136341093&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/a7b3facf078b03c10982a54a7d870af4945c4575
* Fix resource creation in datadog (#9144)
* fix resource creation
* update attribute
* update example
* update version
* update version
---------
Co-authored-by: Shivansh Agarwal <[email protected]>
* [Release] Update index.json for extension [ datadog-2.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136437677&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/c5193f8f9b7b9d82c9c7d9befc1a99e128a5271a
* Update AVNM connectivity configuration CLI to use 2024-07-01 API version (#9125)
* Generated Azure CLI extension changes
* Resolve errors in test files
* Add passing tests
* Fix connect-config parameter applies-to-groups
* Update src/network-manager/azext_network_manager/aaz/latest/network/manager/connect_config/_create.py
Co-authored-by: Copilot <[email protected]>
* Update src/network-manager/azext_network_manager/aaz/latest/network/manager/connect_config/_update.py
Co-authored-by: Copilot <[email protected]>
* Passing local tests
* Add parameter options to connect-config
* Increment versio in HISTORT.rst
* Add singular option for applies to groups
* Fix update.py
* fix conflicting options for connect-config
* fix conflicting options for connect-config
* Fix tests to set connect-config singular options
* update version to 3.0.0 in setup.py
* update version to 3.0.0 in HISTORY.rst
* Fix breaking changes related to network manager paramter
* Release version fix
---------
Co-authored-by: Sonal Singh (from Dev Box) <[email protected]>
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ network-manager-2.1.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136442938&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ce3559ea2a57f228cc8939b19d4c7365178ef73d
* [AKS] Add machine cli preview (#9045)
* [amg] Remove essential SKU resource creation (#9128)
* Remove essential SKU resource creation
* Refine arg error msg
* Remove essential SKU resource creation
* Refine arg error msg
* New test recordings
* Redo test recordings
---------
Co-authored-by: Alan Zhang <[email protected]>
* [Release] Update index.json for extension [ amg-2.8.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136575856&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1681210b2e6e1cce1624d1c41e7b32c19d51650b
* Update index.json (#9146)
Drop Public preview version 0.1.4
* [AKS] Autoscaling support for VMs agentpool (#9012)
* add in azure-iot 0.27.0 (#9151)
* [Release] Update index.json for extension [ aks-preview-18.0.0b37 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136721005&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3d006775c9fe3b7167a88cb25d5ea15e1cc7b380
* [Containerapp] `az containerapp up`: Support --kind {functionapp} (#9052)
* add logic to deal with xml format in return error (#9142)
* add logic to deal with xml format in return error
* change as per comments
* change version
* code style
* change version
* [Release] Update index.json for extension [ spring-1.28.4 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136758693&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7a71074d4aebcc402e153876b1a08976081c4f73
* add aks-agent codeowner (#9152)
* feat: Improve user experience of az aks agent with aks-mcp (#9132)
* feat: Improve user experience of az aks agent with aks-mcp
Enhance the user experience of az aks agent, including:
1. Use aks-mcp by default, offering an opt-out flag --no-aks-mcp.
2. Disable duplicated built-in toolsets when using aks-mcp.
3. Manage the lifecycle of aks-mcp binary, including downloading,
updating, health checking and gracefully stopping.
4. Offer status subcommand to display the system status.
Refine system prompt.
5. Smart toolset refreshment when switching between mcp and traditional
mode.
* use --status instead of status
* address ai comments
* style
* add pytest-asyncio dependency
* fix unit tests
* fix(aks-agent/mcp): eliminate “Event loop is closed” shutdown error
- Launch aks-mcp via subprocess.Popen instead of
asyncio.create_subprocess_exec to avoid asyncio transport GC on a closed
loop.
- Add robust teardown: terminate → wait(timeout) → kill fallback, and
explicitly close stdin/stdout/stderr pipes.
- Make is_server_running use Popen.poll() safely.
- Minor: update MCP prompt to prefer kubectl node listing when Azure
Compute ops are blocked by read-only policy.
* {AKS} Clarify model parameter (cherry-pick PR #9145)
Squashed cherry-pick of PR #9145 commits:\n- clarify model parameter\n- adjust command example to pretty print recommendation\n- fix disallowed html tag in deployment name\n- update examples to use model name as deployment name\n- remove redundant starting space in parameter help\n\nExcluded changes to HISTORY.rst and setup.py as requested.
* chore: Add nilo19 and mainerd to aks agent owners
* chore(aks-agent): fix flake8 issues (E306, E261, W291)
* chore(aks-agent): flake8 E261 fix in mcp_manager.py (two spaces before inline comment)
* [Release] Update index.json for extension [ aks-agent-1.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137081945&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/158f3c3e464c781fe6f9e949ffa135fdf03d7a8a
* ML release - 2.39.0 (#9141)
* Compute connect port 22 path fix (#9082)
* port 22 compute connect fix
* add changelog
* CLI v2 2.39.0 (Version/changelog changes) (#9089)
* Pylint fix + History update (#9143)
* pylint fix
* revert unwanted change
* [Release] Update index.json for extension [ machinelearningservices-2.39.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137089933&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e87f842bc6451c3a0a76b87e8fdc02180076cf51
* [Storage-Mover] `az storage-mover endpoint`: Add new endpoints, Support assigning identity (#9109)
* [Storage-Mover] update to api version 2025-07-01; `az storage-mover endpoint`: Support `identity`
* Custom Commands for Endpoint Create/Update for NFS File Share and Multi Cloud Connector
* Added param for nfs-file-share
* Added test for nfs file share
* NFS Tests Working
* multi cloud connector tests passing
* reverted test_storage_mover_endpoint_scenarios.yaml
* NFS endpoint scenarios recording
* azdev style storage-mover PASSED
* Bumped version and added updates in HISTORY.rst
* fix azdev Linter
* azdev linter and style fix
* azdev lint fix
* edit HISTORY.rst as per the guidlines
* updated API version in the test recordings
* Fixed failing tests
* fixed CI issues
* fixed linter issues
* Added tests for endpoint identity commands
* AzDev Linter Fix
---------
Co-authored-by: KARTIK KHULLAR <[email protected]>
* [Release] Update index.json for extension [ storage-mover-1.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137092341&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7fc211418be94abd02a9ecf3bb3189a7a8c305d7
* [Containerapp] `az containerapp sessionpool create/update`: Add health probe support (#9139)
* don't print version check at bottom toolbar (#9166)
* {CI} Add a test workflow to trigger test extension release pipeline on main branch push (#9158)
* Add workflow to trigger Test Extension Release Pipeline on main branch push
* Add a test pipeline to perform a dry run release of new external extension wheel packages to the unified AME storage account.
* Update .github/workflows/TestTriggerExtensionRelease.yml
Co-authored-by: Copilot <[email protected]>
---------
Co-authored-by: Copilot <[email protected]>
* Add new version for firmwareanalysis for 2025-08-02 swagger (#9161)
* Updating firmwareanalysis extension for GA release
- updated models for latest swagger version 2025-08-02
- updated tests
- removed sas url generation test
* fixed broken cli commands and tests
added back upload url test, but with redacted sasurl
* updating version to 2.0.0
* updated changelog
- removed deprecated command
- fixed test to reference all test values
* update examples to make linter happy
---------
Co-authored-by: Mike Kennedy (from Dev Box) <[email protected]>
* [Release] Update index.json for extension [ firmwareanalysis-2.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137217401&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e15cd8099aa6fb791bf571e9282cce009a81a927
* Updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package. (#9102)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* [Release] Update index.json for extension [ nexusidentity-1.0.0b6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137316991&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/55aa877ffd929dd8bf572e57e2277cb4b72e0a11
* [Containerapp] `az containerapp session stop`: Add stop session feature (#9140)
* [SFTP] Initial Preview Release (#8982)
* init managed sftp prototype
* port fix
* more unit tests
* test fixes
* clean tests
* big clean
* fix flake8
* pylint fixes
* fix versioning and summary
* simplify
* sftp cert ests
* sftp connect tests
* organize tests
* support tilde
* clean logged out logs
* az sftp cert expiration
* az sftp cert argument combination tests
* parameterize some tests
* az sftp connect arg combos
* remove batch mode
* unit tests
* simplify
* update args and summary
* minor changes and add basic scenario tests
* style
* remove validators
* remove connectivity utils and client factory
* remove test-only functions
* remove unnecessary wrappers
* remove chmod
* remove batch commands example
* add sftp to service_name.json
* Add copyright header test_sftp_scenario.py
* Update azext_metadata.json
---------
Co-authored-by: Zhiyi Huang <[email protected]>
* [Release] Update index.json for extension [ sftp-1.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137326695&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3ff2094b2eb10d3d6cda59c138befe9e26e7bf46
* (playwrighttesting): Deprecation of playwright cli command (#9156)
Co-authored-by: guptakashish <[email protected]>
* Update firmwareanalysis to GA status (#9172)
- remove azext.isPreview configuration so docs reflect GA status instead
of Preview
- bump version to 2.0.1 so we can release the fix
Co-authored-by: Mike Kennedy (from Dev Box) <[email protected]>
* [Release] Update index.json for extension [ firmwareanalysis-2.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137347377&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2788cf10fb77bde67930b43f62c5454be80c4fe4
* chore: Disable aks-mcp by default, offer --aks-mcp flag to enable it (#9171)
* [Release] Update index.json for extension [ aks-agent-1.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137471450&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/acc900e7a53c3083ed343b75346268cb35a54f6b
* Add blue green upgrade support for aks-preview (#8999)
* Feature/aks acns performance (#9136)
* feat: add acns perf options
* feat: fix issues, add tests
* chore: update history
* Update src/aks-preview/azext_aks_preview/managed_cluster_decorator.py
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/azext_aks_preview/tests/latest/test_managed_cluster_decorator.py
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/linter_exclusions.yml
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/linter_exclusions.yml
Co-authored-by: Copilot <[email protected]>
* fix: address comments
* fix: address comments
* fix: switch to westcentralus
* chore: update version
* fix: undo accidental delete
* chore: update acns perf test, add recording
* fix bad merge
---------
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b38 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137487000&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b06cbbb5beddcc2db1da8d464f20ea09be2fd0f0
* [connectedk8s] Update extension CLI to v1.10.9 (#9177)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* update release notes and version for connectedk8s cli extension (#18)
* remove redundant test files specific to forked repo CI checks
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.9 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137602188&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d4d58b120103cf002b568ed8dcc03085d6dd9bec
* [Communication] Add deliveryReport and Tag parameters to sms send command (#9180)
* Add deliveryReport and Tag parameters to sms send command
* correct version
* update version
* Fix tests
* Fix test and recordings
* Fix recordings
* [Release] Update index.json for extension [ communication-1.14.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137812299&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3e96534a196cd4832ea84859874a34b255397da9
* [amlfs] Add az amlfs auto-import commands (#9134)
* [amlfs] Add az amlfs auto-import commands
* Updating History and setup files
* Update src/amlfs/azext_amlfs/aaz/latest/amlfs/auto_import/_update.py
Co-authored-by: Copilot <[email protected]>
(cherry picked from commit 3d1f1fc728de13efd194a5b2fa529d4f9633a07a)
* Updating create option conflict resolution for shorter length
* Adding re-recorded Import Job test
* Adding re-recorded AutoExportJob tests
* Adding re-recorded test results
---------
Co-authored-by: Aman Jain <[email protected]>
Co-authored-by: Copilot <[email protected]>
* Create role assignment for MSI when enable_vnet_integration is true (#9153)
* update error message
* grant vnet perm
* address comments
* setup.py
* update
* update style
* release version block
* update
* [Release] Update index.json for extension [ amlfs-1.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137812854&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/8357d6f854d23360cfe0dc5d94c2c616fea5bebb
* Managed Network Fabric - Removing the `externalnetwork update-bfd-administrative-state` command as it is not supported by the API. (#9182)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* removing unsupported operation
* removing unsupported operation
* Retrigger GitHub Actions
* [Release] Update index.json for extension [ managednetworkfabric-8.1.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137813062&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1c1130586dde43a58feb173f23366c03cb5bc56a
* Update the layer hashes for image which has changed and pull specific sha (#9174)
* {CI} Sync resourceManagement.yml according To ADO Wiki Page - Service Contact List (#9197)
* Network Cloud Preview Version 4.0.0b1 for 2025-07-01-preview (#9057)
* new version of networkcloud cli
* updating min version
* pushing some updates
* fix run command for storage appliance on windows
* update history
---------
Co-authored-by: Nafiz Haider <[email protected]>
* [Release] Update index.json for extension [ networkcloud-4.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137934227&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2105ee9ce3a5d929eadc6168b773e9edaf4626e2
* [AKS] Add option AzureLinuxOSGuard and AzureLinux3OSGuard to --os-sku for az aks nodepool add and az aks nodepool update (#9147)
* [Release] Update index.json for extension [ aks-preview-18.0.0b39 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137942863&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ce952e4f70216f250df394de9923dfb27da0a181
* {Zones} Pin minCliCoreVersion 2.72.0 as the latest CLI version before this extension was released. Remove incompatibility with previous CLI core version. (#9200)
* [Release] Update index.json for extension [ zones-1.0.0b5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137945712&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fe864e4ac75ea7a928a9bde0b4d925e97d7bfd04
* exclude tests folder (#9213)
* new release (#9218)
* [AKS] Add option Windows2025 to --os-sku for az aks nodepool add (#9178)
* arcdata version bump to 1.5.26 (#9148)
Co-authored-by: Melody Zhu <[email protected]>
* {AKS} Fix test case `test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id` (#9221)
* [AKS] Fix --aks-mcp flag to accept true/false values (#9231)
Simplified the aks-mcp parameter by removing custom positive/negative labels
and using the default three_state_flag behavior to properly handle true/false values.
* [AKS Agent] Bump aks-mcp version to v0.0.9 (#9236)
* [AKS Agent] Bump aks-mcp version to v0.0.9
* [AKS Agent] Bump aks-agent version to 1.0.0b4
* [Release] Update index.json for extension [ aks-agent-1.0.0b4 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138354998&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fa62bf336ebe4577b3fc7b0a61247f5ec0e931d3
* Managed Network Fabric - Adding nullable to all ARM-ID fields to allow clearing the values (#9216)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* removing unsupported operation
* removing unsupported operation
* Retrigger GitHub Actions
* Adding nullable to all ARM-ID fields
* Adding nullable to all ARM-ID fields
* fixing versioning
* {stream-analytics} Support with Azure Function (#9179)
* migrate to aaz, support with Azure Function
* remove cf, run live test
* update version
* [Release] Update index.json for extension [ managednetworkfabric-8.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138359475&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2453de18c687e700812af0fbebbef314df28411f
* [Release] Update index.json for extension [ stream-analytics-1.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138359965&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ef3c612878cb4f2be583449fe12578941952109e
* [confcom] Add tests for acipolicygen (#9199)
* Add tests for acipolicygen on arm template
* Add missing sha based references
* Remove helper script
* Add a test for fragments
* Skip test with known issue
* Skip exclude default fragment tests for known issue
* Update missed rego policies
* Fix the curdir of acipolicygen test runner
* [confcom] Bump the infra fragment minimum svn to 4 (#9238)
* Bump the infra fragment minimum svn to 4
* Bump version
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138363679&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/f4f6815128332be637ef1eaf6d9f27753ac785c8
* AKS: Change --enable-azure-container-storage --disable-azure-container -storage behavior and add --container-storage-version (#9138)
* [Release] Update index.json for extension [ aks-preview-18.0.0b40 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138547011&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/737b240c25351488f0c9ba79c9dfc886d083d52f
* AOSM CLI - Fixing a zip-slip security bug for code that was using tar.extractall() on `nfd build` command (#9234)
* AOSM CLI - Fixing a zip-slip security bug for code that was using tar.extractall() on `nfd build` command
* fixing tests
* fixing tests
* review updates
---------
Co-authored-by: Daniel Steven <[email protected]>
* [Release] Update index.json for extension [ aosm-2.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138548638&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/966e8d89e58db94e98c6907a896cc58c7cbfd6fd
* Skip none overrides on localdns profile (#9188)
* Add JWT Authenticator commands to aks-preview (#9189)
* [ Workload-Orchestration ] Added Bulk Management Commands (#9246)
* Workload orchestration 3.1.0
* Update version
* Update version
* Adding example
* Adding example
* Removing pem files
* Updating api version
* Fixing tests
* Fixing tests
* Backward Compatible
---------
Co-authored-by: Atharva <[email protected]>
* [Release] Update index.json for extension [ workload-orchestration-4.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138573512&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d378651f9ff52200278ac797b9e245d179efad55
* Fix merge conflict between new tests and default min svn bump (#9241)
* Add NG of type subnet support (#9244)
* [Release] Update index.json for extension [ network-manager-3.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138664427&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/8e30da7574fee6e8695f7cbe1b2b10a7bab76940
* [connectedk8s] Update extension CLI to v1.10.10 (#9254)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* Parameterize for airgapped clouds (#5)
* Add parameterization for the airgapped clouds
* Fix azdev style
* MCR path function
* azdev, ruff, and mypy
---------
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
* Oras client fix to work with different MCRs (#6)
Co-authored-by: mmcneal <[email protected]>
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* Update cluster diagnostics image to 1.29.3 (#7)
* Update cluster diagnostics helm chart to 1.29.3
* Fix lint issues
---------
Co-authored-by: bgriddaluru <[email protected]>
* RBAC deprecation & fix the issue
* typo
* fix comments
* update tests
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* rebase
* fix tests
* fix version
* fix mypy, lint
* fix test
* fix test
* fix test
* fix test
* fix test
* rename test
* deprecate flags
* rebase
* rebase
* bump version for release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* remove redundant test files
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: Vineeth Thumma <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.10 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138674669&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e03fa94b705e6ec9957f77b909845350d186b47a
* Evals system for aks-agent (#9219)
* fix: acns-datapath-acceleration-mode None should set the API field correctly (#9255)
* [Release] Update index.json for extension [ aks-preview-18.0.0b41 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138690044&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/961d5126fccf51bc8801600a00e85776e9b7cd2b
* Azure CLI to manage Site resources (#9181)
* Site cli extension changes
* removing beta
* Allowing labels deletion
* removing beta from version history
* Correcting argument
* Correcting format
* Updated readme
* Adding beta to version
* Updating service_name file with site entry
* [Release] Update index.json for extension [ site-1.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138696727&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/4a4e750e807ee47001be3bfa132d117931e66052
* Azure Firewall Autoscale Configuration (#9235)
* Azure Firewall Autoscale Configuration
* bump version
* update recordings for tests
* reset of recordings
* Try to fix recording for test_azure_firewall_policy_explicit_proxy
* non-dynamic test value
* Use sas token key
* Remove explicit proxy test
* [Release] Update index.json for extension [ azure-firewall-1.4.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138818987&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b030b92555c22dbbaade2b867793b72e7aa14095
* Managed Network Fabric - Removing commands that are not supported by the API. (#9266)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* [Release] Update index.json for extension [ managednetworkfabric-8.2.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139155356&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/59ba8a14aba85101d8e41c6c1a8789d4b65aed12
* [AKS] Add support for OSSKU Flatcar to cluster create/nodepool create (#9240)
* [storage-discovery] 09-01 stable cli extension (#9230)
mark operations stable
update setup.py and HISTORY.rst
remove azext.isPreview from azext_metadata.json
* {AKS} Fix role assignment failure when using azure-cli version >= `2.77.0`. (#9267)
* [Release] Update index.json for extension [ storage-discovery-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139171604&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2ebf49eb7017ef71056316875e240c0c76a71cc6
* [Release] Update index.json for extension [ aks-preview-18.0.0b42 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139172224&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/af54e9d799ca3d4da6796ba46da47474bde7bf4e
* Add new parameter to enable Dnstap logging in Azure Firewall (#9271)
* Adding new parameter enable-dnstap-logging
* Small nit
* Small nit2
* Remove comma
* Update history
* update test recording
* Update setup
---------
Co-authored-by: Bhumika Kaur Matharu <[email protected]>
* [Release] Update index.json for extension [ azure-firewall-1.5.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139595971&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/05c62a2a4793c75960b2fda7aa920574522be3b4
* Add LocalDNS Live Tests for valid and invalid scenarios (#9252)
* skip none overrides on localdns profile
* update history rst
* refactor to process dns overrides func
* move overrides function to helper file
* apply linter suggestions
* add localdnsconfig folder
* add more tests
* add new json files
* add default dns overrides
* add more test cases
* move tests around, move invalid cases to another file
* add back import semver
* reorder the existing tests
* delete preferred mode only
* delete null.json
* remove redundant json file
* remove redundant json file
* fix the mistake at line 3349
* forgot that i put all the configs in data/localconfig folder
* remove unused file
* spelling error
* fix default dnsOverrides check when we create agentpool with required mode only
* restore localdnsconfig file
* delete extra property case from invalid test file
* add extra property cases in src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py
* add extra property files
* check for defaulted *dnsOverrides when making agent pool with mode: required only
* comment out cleanup in test_aks_nodepool_add_with_localdns_required_mode
* add more logging for debugging
* add print statements in src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py for debugging
* only initialize the dictionaries if dnsoverrides are provided
* process dns overrides only when dns overrides are provided
* consolidate duplicated build_localdns_profile function
* move invalid cases to line 4133
* update test_aks_commands.py
* look for vnetDnsOverrides and kubeDNSOverrides keys, case-insensitive
* fix test_aks_nodepool_add_with_localdns_required_mode_single_vnetdns
* check for dictionary for build_override
* update failing test cases
* rename from required_mode_extra_property.json -> required_mode_kubedns_extra_property.json
* fix azdev style
* temporarily add self.fail statements s.t. i can see the error_message
* change from assertTrue to assertIn with more specific error msg, delete un-needed test case
* change from print to debug
* remove logger.debug line to print localdnsprofile
* add null config file
* fix the tests
* fix the tests
* update src/aks-preview/HISTORY.rst with a new note under 18.0.0b42
* update src/aks-preview/HISTORY.rst
* Revert "add print statements in src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py for debugging"
This reverts commit b7474385a8bcb5088ea8539923a4eca5ab366ba3.
* update src/aks-preview/HISTORY.rst
* Revert "add more logging for debugging"
This reverts commit 1786254f78627af5926efa438163843de19657dd.
* mix the casing for *dnsoverrides
* throw an exception from cli if the values of kubednsoverrides or vnetdnsoverrides are not type dict
* add tests for null and non-dict overrides
* make the keys of localdnsprofile mixed-case
* add required_mode_null_dnsOverrides.json and required_mode_number_dnsOverrides.json
* correct the error message I'm looking for, for non-dict dns overrides
* remove print stmt from src/aks-preview/azext_aks_preview/_helpers.py
* add check for DNS override settings
* update the test with dns override settings check
* update assertIn msg for test_aks_nodepool_add_with_localdns_required_mode_partial_invalid
* break down InvalidArgumentValueError msg into two lines
* update existing cassette files
* new cassette files for new tests
* add three additional cassette files I did not commit before
* expect InvalidArgumentValueError when None is provided for DNS overrides
* update AKSPreviewAgentPoolUpdateDecoratorCommonTestCase.common_update_localdns_profile
* revert the import statement for from azure.cli.command_modules.acs.tests.latest.mocks import
* Add a new line
* Revert "Add a new line"
This reverts commit 2c347c3c6d5afed2bd36aa32818f1dfdbae9a44e.
* update version in src/aks-preview/setup.py to align with azure-cli-extensions/src/aks-preview/HISTORY.rst
---------
Co-authored-by: juanbe <[email protected]>
Co-authored-by: Juan Diego Bencardino <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b43 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139618131&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ba0a97c85caacd81d7863a190f1d1f68215d142c
* [Network] Feature network NSP 2024 10 01 (#9101)
* Add changes related 2024-10-01
* Update changelog
* Update tests
* Updated tests
* updated tests recordings
* Update test recordings
* [Release] Update index.json for extension [ nsp-1.1.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139724051&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/4790cd2e5819a8d739982c378af223756c0fa0ec
* Bump fleet az cli extension version to 1.7.0 (#9277)
* bump to 1.6.5
* update the version to 1.7.0
* [Release] Update index.json for extension [ fleet-1.7.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139749279&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/75972f4473c184b540e9514bfd8cddaa2104f1ae
* {AKS} Vendor new SDK and bump API version to 2025-08-02-preview (#9276)
* {redisenterprise} breaking change warning (#9272)
* breaking change warning
* Update src/redisenterprise/_breaking_change.py
Co-authored-by: Copilot <[email protected]>
* style fix
* update version
---------
Co-authored-by: Nikita Garg <[email protected]>
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ redisenterprise-1.2.2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139758024&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/cfa24a9086847c85fb737b625c9e50546b8c29b3
* Added SQL DB Retry, SQLVM Delete and SQLMI Delete commands (#9256)
* Added SQL DB Retry, SQLVM Delete and SQLMI Delete commands
* Updates.
* Updates
---------
Co-authored-by: Amarjeet Kumar <[email protected]>
* [Release] Update index.json for extension [ datamigration-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139765686&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/19559b67b7f99bec3a057327a4483f90059e9729
* {Containerapp} Update recording files (#9281)
* hide the --enable-managed-system-pool option for now (#9278)
* hide the --enable-managed-system-pool optoin for now
* add history
* keep _help.py
* fix style
* update setup.py
---------
Co-authored-by: Hao Yuan <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b44 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140008104&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/bfb734ec564d1cfaa7b94216ea34a20fd78a9050
* Network Cloud CLi - Fixing zip-slip vulnerability in custom operations (#9282)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* Network Cloud CLi - Fixing zip-slip vulnerability
* updating history and setup.py versions
* linting fixes
* [Release] Update index.json for extension [ networkcloud-4.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140083779&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/aff3034796db390283b7556306fc1c5847d0700d
* [confcom] Add a warning and path for default change for stdio (#9203)
* Add a warning and path for default change for stdio
* Satisfy azdev style
* Fix help string for --enable-stdio
* Refactor resolving stdio into it's own function
* Bump version
* Bump minor version
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140089922&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/de110edc4faa6464bfa82fe8dc64f46c34ad1d77
* Stumpaudra/fleet/managed namespace (#9035)
* base recalibration
update
update
update
update
update
update
removing 0401
got tests to work
update
pylint
update
pylint
update
adding get credential commansd
update
pylint
addressing comments
simplifying namespace
updates
updates
lint
style
pylint
updates
updates to member
updates
updates
updates
style
updates
update
update
updated test recordings
removing unwanted files
updates
updating metadata
linter
updating version/history
setup
updates
style
style
update style
flake8
remove preview
making hubful recording use global endpoint
squash-managednamespace implementation
* changing defaults, updating help message
* updates
* adding validation none check
* updates
* version
---------
Co-authored-by: audrastump <[email protected]>
Co-authored-by: Jim Minter <[email protected]>
* [Release] Update index.json for extension [ fleet-1.8.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140092040&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b980420e190b0e3d2ea39605c9c886372b33c4c1
* [AKS] `az aks update`: Add new parameter `--kms-infrastructure-encryption` to enable KMS infrastructure encryption on an existing cluster. (#9287)
* Used vendored application insight sdk (#9184)
* vendor SDK
* Update SDK reference
* Fix test
* [Release] Update index.json for extension [ spring-1.28.5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140102657&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/60bc46cafbca3c684431a741acafe1161cd4416c
* [redisenterprise] update breaking change file loc (#9294)
* update file loc
* update version
* style fix
* style fix
---------
Co-authored-by: Nikita Garg <[email protected]>
* [Release] Update index.json for extension [ redisenterprise-1.2.3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140114066&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/351dba70de70d6d32c6ddb414ad6bdfa1549ad70
* Network Cloud CLI version 2025-09-01 GA (#9295)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* Network Cloud CLi - Fixing zip-slip vulnerability
* updating history and setup.py versions
* linting fixes
* Netowrk Cloud CLI version 2025-09-01 GA
* [Release] Update index.json for extension [ networkcloud-4.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140209385&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/c239b89d4477e91c26d4a41c9d716dcbe762432b
* {Containerapp} Update test and recording files (#9291)
* update (#9297)
* [Release] Update index.json for extension [ containerapp ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140238524&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/26143775307ca13b9b86a530ed0cc3f27f789ea9
* [connectedmachine] update get extension image command (#9187)
* release 24-11
* update tests
* update version
* fix version number
* fix style
* fix style issue
* update tests
* update tests
* update tests
* update tests
* update tests
* upate test
* update test
* update test
* update test
* update commands
* update
* Update src/connectedmachine/azext_connectedmachine/aaz/latest/connectedmachine/extension/image/_show.py
Co-authored-by: Copilot <[email protected]>
* Update src/connectedmachine/azext_connectedmachine/aaz/latest/connectedmachine/extension/image/_list.py
Co-authored-by: Copilot <[email protected]>
* update tests
* update
* update test
* update
* update
---------
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ connectedmachine-2.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140341424&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/a9b5e3cd0f474731252d2e171f5fa027b7d7f600
* feat: remove --enable-custom-ca-trust and --disable-custom-ca-trust options (#9283)
* [Release] Update index.json for extension [ aks-preview-19.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140361299&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/89bbdac512889150b71f005451f22a53d1ab330a
* add index (#9299)
* [servicelinkerpasswordless] fix logging issue (#9300)
* [Release] Update index.json for extension [ serviceconnector-passwordless-3.3.6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140371627&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/695ae6076fd9aaa53012d5d62b3dbff044d75ba6
* Update link in azcli_aks_live_test README (#9247)
* updated the api version to 2025-06-01 (#9296)
Co-authored-by: Ravindra Dongade <[email protected]>
* initial checking for 2025-07-15 stable CLI (#9269)
* [Release] Update index.json for extension [ managednetworkfabric-9.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140490277&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fe7ebde6039cb517af4224dc18916a3c389d916c
* [connectedk8s] Update extension CLI to v1.10.11 (#9304)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* Parameterize for airgapped clouds (#5)
* Add parameterization for the airgapped clouds
* Fix azdev style
* MCR path function
* azdev, ruff, and mypy
---------
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
* Oras client fix to work with different MCRs (#6)
Co-authored-by: mmcneal <[email protected]>
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* Update cluster diagnostics image to 1.29.3 (#7)
* Update cluster diagnostics helm chart to 1.29.3
* Fix lint issues
---------
Co-authored-by: bgriddaluru <[email protected]>
* RBAC deprecation & fix the issue
* typo
* fix comments
* update tests
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* rebase
* fix tests
* fix version
* fix mypy, lint
* fix test
* fix test
* fix test
* fix test
* fix test
* rename test
* deprecate flags
* rebase
* rebase
* bump version for release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* remove hardcoded public ARM endpoint url for fairfax and mooncake (#24)
* Bug Fix for FFX mcr url (#22)
* [connectedk8s] update release notes and version (#26)
* remove redundant test files
* remove change not relevant to connectedk8s release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: Vineeth Thumma <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
Co-authored-by: hapate <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.11 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140504087&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/425351566b46b9adca5cbf821b6f526fc572004b
* [AKS] Add --enable-opentelemetry-metrics and --enable-opentelemetry-logs to monitoring addons in aks-preview (#9149)
* [Release] Update index.json for extension [ aks-preview-19.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140506301&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d2beb32eaae782455245a986bc6ce59aaffcd213
* {AKS} Bump holmesgpt and add feedback slash command (#9261)
* [Release] Update index.json for extension [ aks-agent-1.0.0b5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140510943&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/07cf2351f42a9c1e86e91c4f4b2b5f6278cca311
* Fix doc link to dmverity-vhd tool (#9068)
Moved to
- https://github.com/microsoft/integrity-vhd
Removal in original location in
- https://github.com/microsoft/hcsshim/pull/2318
* [confcom] Fix multiple issues with `acipolicygen --diff` (#9258)
* Only attempt to parse ccePolicy if --diff is specified
* Fix parsing ccePolicies with no container defintions
* Satisfy azdev style
* Fix --infrastructure-svn and --fragments-json combo (#9264)
* [AKS] Implement platform-managed-keys (PMK) awared validation for KMS customer-managed-key (CMK) (#9301)
* [Release] Update index.json for extension [ aks-preview-19.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140528984&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/dbe4e9bedb0289cb9a62822d3597dc89d2abad24
* Temporarily r…
* Revert "Temporarily removed the extension: aks-agent (#9115)" (#9116)
This reverts commit ddc223c9434896ec971e79835d94ff46ca116987.
* Revert "Fix Neon extension: Unify command structure and remove preview status" (#9117)
* Revert "Fix Neon extension: Unify command structure and remove preview status…"
This reverts commit a973f801f0a55b2cef585982852c364c708d5ee1.
* Bump version from 1.0.0b4 to 1.0.0b6
* [Release] Update index.json for extension [ neon-1.0.0b6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135751142&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/64ab52906fe23694a8f957a80268da563663ddca
* {AKS} Remove the sku preview flag from help command for AKS automatic (#9120)
* [Release] Update index.json for extension [ aks-preview-18.0.0b32 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135839673&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7d5b6575a74ab795aa41a7fe6c42dc6932b6d193
* [ Workload-Orchestration ] Add Context & Solution Management Commands (#9037)
* added
* commit
* Made Changes
* Added change
* Made changes
* List solution revisions and instances
* Made changes rr
* Made change
---------
Co-authored-by: Atharva <[email protected]>
Co-authored-by: Manaswita Chichili <[email protected]>
* [AKS] `az aks create`: Add new parameter `--kms-infrastructure-encryption` to enable KMS infrastructure encryption. (#9071)
* Revert "[Release] Update index.json for extension [ neon-1.0.0b5 ]" (#9118)
This reverts commit 616990f9572fb222bf6053f617b014ec34eda4e9.
* [Release] Update index.json for extension [ aks-preview-18.0.0b33 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135846382&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/042aa4e33a6085925b71e3b275500601f13e8979
* [ServiceConnector-passwordless] bump version for psycopg2-binary (#9075)
* bump version for psycopg2-binary
* update
* Update CLI command descriptions for newrelic (#9119)
* [Release] Update index.json for extension [ new-relic-1.0.2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135848078&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e1df567b8f3ba18f6382b1aa87c591308de8b707
* [Release] Update index.json for extension [ serviceconnector-passwordless-3.3.5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135848077&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/42db1eb7e72d87b899efa382e0aa737982d53604
* Feature/ga release (#9123)
* Update version from 1.0.0b6 to 1.0.0
* Update HISTORY.rst with release information
* [Release] Update index.json for extension [ neon-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135957068&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/18785cf742c9611cae46cbce3fed1e55d0f990e0
* aks add nodepool add to support machines pool (#9121)
Co-authored-by: Jianping Zeng <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b34 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135967911&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1d48b879bc1179ca29059c677bab35e70e71972f
* {AKS} Vendor new SDK and bump API version to 2025-07-02-preview (#9131)
* [Release] Update index.json for extension [ aks-preview-18.0.0b35 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135984989&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b79f617d7ff5fb6c578dc7d00e8a1bfd7831f164
* Added changes (#9130)
Co-authored-by: Atharva <[email protected]>
* [Release] Update index.json for extension [ workload-orchestration-3.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135985917&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/715f0c64382b3a6db5dfc9310b186a959f87a459
* [SCVMM] Fixed create_from_machines command for VM Instance creation (#9107)
* [Release] Update index.json for extension [ scvmm-1.2.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136097084&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/06d116ebcf1386c562b75e3cc7fd3acf37bc64ce
* [k8s-extension] Update extension CLI to v1.7.0 (#9126)
* add pester tests for k8s-extension
* fix testcases for nodepool image issues (#5)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* Extend ContainerInsights Extension for high log scale mode support (#9)
* update python version to 3.13 (#10)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* Add k8s-extension troubleshoot phase 1: Infrastructure setup. (#11)
* [k8s-extension] Update extension CLI to v1.7.0 (#13)
* remove redundant test files
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bragi92 <[email protected]>
Co-authored-by: Long Wan <[email protected]>
Co-authored-by: Andres Borja <[email protected]>
* [Release] Update index.json for extension [ k8s-extension-1.7.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136097815&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/40c0147fe008dcf56c451193d06cc8f54136b525
* Fix help text for `fleet list` command (#9114)
* [confcom] Adding standalone fragment support (#9097)
* ensure that oras discover doesn't error when the remote image doesn't exist
* updating version
* adding print for binary version
* commenting out some tests due to docker incompatibility
* pull image before saving to tar
---------
Co-authored-by: Heather Garvison <[email protected]>
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136107318&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/bca2ea1679e62d67a08edd9c4396d4d53b83c462
* feat: Add Neon PostgreSQL preview API commands with parameter mapping… (#9133)
* feat: Add Neon PostgreSQL preview API commands with parameter mapping fixes
- Added 13 new commands for Neon PostgreSQL 2025-06-23-preview API
- Fixed critical parameter mapping issues in endpoint/database/role create commands
- Added comprehensive test suite with 6 test methods covering all functionality
- Updated azext_metadata.json with new command registrations
New Commands Added:
- az neon postgres endpoint create/list/delete
- az neon postgres neon-database create/list/delete
- az neon postgres neon-role create/list/delete
- az neon postgres get-postgres-version
Parameter Mapping Fixes:
- Fixed URL parameter mapping to use project_id/branch_id when available
- Resolved 'branch not found' errors in create commands
- Ensured proper API endpoint construction for nested resources
Testing:
- All 6 tests passing (100% success rate)
- Comprehensive validation of parameter mapping fixes
- Help command testing for all new commands
- Parameter validation testing for required fields
* Add command examples to fix linter violations
- Added examples for endpoint create command
- Added examples for get-postgres-version command
- Added examples for neon-role create command
- Added examples for neon-database create command
- Examples include common usage patterns and parameter variations
* fix: Add parameter mapping fixes for create commands
- Add project_id parameter to endpoint, role, and database create commands
- Implement URL parameter mapping with getattr/hasattr fallback pattern
- Fix endpoint list command parameter mapping
- Enable proper API URL construction for all create operations
- All tests passing (6/6) with real Azure resource validation
- Successfully tested with live Azure resources (endpoints, roles, databases created)
* fix: Correct help examples to fix linter errors
- Fix --attributes parameter examples to use proper JSON format instead of space-separated key=value pairs
- Replace invalid --suspend-timeout-minutes parameter with valid --size parameter in endpoint create example
- Resolve HIGH severity linter error: faulty_help_example_parameters_rule
- All help examples now use correct Azure CLI parameter syntax
* fix: Add linter exclusions for missing_command_example
- Add exclusions for neon postgres commands to resolve git-based linter check failure
- Commands have proper help examples but git-based linter doesn't detect them for AAZ commands
- Excludes: endpoint create, neon-role create, neon-database create, get-postgres-version
- Resolves HIGH severity missing_command_example linter error in CI pipeline
* feat: Remove wait commands and update to version 1.0.1b1
- Remove wait command files: branch/_wait.py, project/_wait.py, organization/_wait.py
- Update __init__.py files to remove wait command imports
- Add linter exclusions for require_wait_command_if_no_wait rule for all command groups
- Update version to 1.0.1b1 in setup.py
- Add comprehensive changelog entry to HISTORY.rst documenting all improvements:
* 25 commands across 8 command groups
* Parameter mapping fixes with real Azure resource validation
* Help examples and linter compliance
* Successful testing with live Azure subscription
- Wait commands removed as operations complete quickly and were unnecessary
- All tests passing (6/6) and functionality verified
* docs: Update HISTORY.rst with concise 1.0.1b1 changelog
- Streamline changelog entry for version 1.0.1b1
- Focus on key features: preview commands for new entities
- Highlight important changes: wait commands removal, linter exclusions
- Emphasize successful real Azure resources validation testing
- Maintain clear and readable documentation format
* [Release] Update index.json for extension [ neon-1.0.1b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136319375&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fb81781e93568fcc494b8f93ef71789d555270c3
* Release ArcAppliance CLI 1.6.0 (#9137)
Co-authored-by: Sai Sankar Gochhayat <[email protected]>
* [AKS] Add option `AzureLinux3` to `--os-sku` for `az aks nodepool add` and `az aks nodepool update` (#9095)
* chore: add AzureLinux3 OSSKU enum value
Signed-off-by: Calvin Shum <[email protected]>
* Complete AzureLinux3 OSSKU implementation
- Add changelog entry for version 18.0.0b29
- Bump version to 18.0.0b29
- Follow exact pattern from Ubuntu2204/Ubuntu2404 implementation
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
Signed-off-by: Calvin Shum <[email protected]>
* add recording test
* Revert "Complete AzureLinux3 OSSKU implementation"
This reverts commit 588cb2a6dd1cbdbce9d68ec14f12c711a838d737.
* Bump version to 18.0.0b34
- Add changelog entry for version 18.0.0b34
- Bump version to 18.0.0b34
* Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml
* Revert "Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml"
This reverts commit 5a20e1beced030fa0109f6b1d06ab187653617f2.
* Reapply "Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml"
This reverts commit e702361678f026883f01b139fe25c3ebd02fd953.
---------
Signed-off-by: Calvin Shum <[email protected]>
Co-authored-by: anujmaheshwari1 <[email protected]>
Co-authored-by: Claude <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b36 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136341093&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/a7b3facf078b03c10982a54a7d870af4945c4575
* Fix resource creation in datadog (#9144)
* fix resource creation
* update attribute
* update example
* update version
* update version
---------
Co-authored-by: Shivansh Agarwal <[email protected]>
* [Release] Update index.json for extension [ datadog-2.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136437677&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/c5193f8f9b7b9d82c9c7d9befc1a99e128a5271a
* Update AVNM connectivity configuration CLI to use 2024-07-01 API version (#9125)
* Generated Azure CLI extension changes
* Resolve errors in test files
* Add passing tests
* Fix connect-config parameter applies-to-groups
* Update src/network-manager/azext_network_manager/aaz/latest/network/manager/connect_config/_create.py
Co-authored-by: Copilot <[email protected]>
* Update src/network-manager/azext_network_manager/aaz/latest/network/manager/connect_config/_update.py
Co-authored-by: Copilot <[email protected]>
* Passing local tests
* Add parameter options to connect-config
* Increment versio in HISTORT.rst
* Add singular option for applies to groups
* Fix update.py
* fix conflicting options for connect-config
* fix conflicting options for connect-config
* Fix tests to set connect-config singular options
* update version to 3.0.0 in setup.py
* update version to 3.0.0 in HISTORY.rst
* Fix breaking changes related to network manager paramter
* Release version fix
---------
Co-authored-by: Sonal Singh (from Dev Box) <[email protected]>
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ network-manager-2.1.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136442938&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ce3559ea2a57f228cc8939b19d4c7365178ef73d
* [AKS] Add machine cli preview (#9045)
* [amg] Remove essential SKU resource creation (#9128)
* Remove essential SKU resource creation
* Refine arg error msg
* Remove essential SKU resource creation
* Refine arg error msg
* New test recordings
* Redo test recordings
---------
Co-authored-by: Alan Zhang <[email protected]>
* [Release] Update index.json for extension [ amg-2.8.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136575856&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1681210b2e6e1cce1624d1c41e7b32c19d51650b
* Update index.json (#9146)
Drop Public preview version 0.1.4
* [AKS] Autoscaling support for VMs agentpool (#9012)
* add in azure-iot 0.27.0 (#9151)
* [Release] Update index.json for extension [ aks-preview-18.0.0b37 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136721005&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3d006775c9fe3b7167a88cb25d5ea15e1cc7b380
* [Containerapp] `az containerapp up`: Support --kind {functionapp} (#9052)
* add logic to deal with xml format in return error (#9142)
* add logic to deal with xml format in return error
* change as per comments
* change version
* code style
* change version
* [Release] Update index.json for extension [ spring-1.28.4 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136758693&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7a71074d4aebcc402e153876b1a08976081c4f73
* add aks-agent codeowner (#9152)
* feat: Improve user experience of az aks agent with aks-mcp (#9132)
* feat: Improve user experience of az aks agent with aks-mcp
Enhance the user experience of az aks agent, including:
1. Use aks-mcp by default, offering an opt-out flag --no-aks-mcp.
2. Disable duplicated built-in toolsets when using aks-mcp.
3. Manage the lifecycle of aks-mcp binary, including downloading,
updating, health checking and gracefully stopping.
4. Offer status subcommand to display the system status.
Refine system prompt.
5. Smart toolset refreshment when switching between mcp and traditional
mode.
* use --status instead of status
* address ai comments
* style
* add pytest-asyncio dependency
* fix unit tests
* fix(aks-agent/mcp): eliminate “Event loop is closed” shutdown error
- Launch aks-mcp via subprocess.Popen instead of
asyncio.create_subprocess_exec to avoid asyncio transport GC on a closed
loop.
- Add robust teardown: terminate → wait(timeout) → kill fallback, and
explicitly close stdin/stdout/stderr pipes.
- Make is_server_running use Popen.poll() safely.
- Minor: update MCP prompt to prefer kubectl node listing when Azure
Compute ops are blocked by read-only policy.
* {AKS} Clarify model parameter (cherry-pick PR #9145)
Squashed cherry-pick of PR #9145 commits:\n- clarify model parameter\n- adjust command example to pretty print recommendation\n- fix disallowed html tag in deployment name\n- update examples to use model name as deployment name\n- remove redundant starting space in parameter help\n\nExcluded changes to HISTORY.rst and setup.py as requested.
* chore: Add nilo19 and mainerd to aks agent owners
* chore(aks-agent): fix flake8 issues (E306, E261, W291)
* chore(aks-agent): flake8 E261 fix in mcp_manager.py (two spaces before inline comment)
* [Release] Update index.json for extension [ aks-agent-1.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137081945&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/158f3c3e464c781fe6f9e949ffa135fdf03d7a8a
* ML release - 2.39.0 (#9141)
* Compute connect port 22 path fix (#9082)
* port 22 compute connect fix
* add changelog
* CLI v2 2.39.0 (Version/changelog changes) (#9089)
* Pylint fix + History update (#9143)
* pylint fix
* revert unwanted change
* [Release] Update index.json for extension [ machinelearningservices-2.39.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137089933&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e87f842bc6451c3a0a76b87e8fdc02180076cf51
* [Storage-Mover] `az storage-mover endpoint`: Add new endpoints, Support assigning identity (#9109)
* [Storage-Mover] update to api version 2025-07-01; `az storage-mover endpoint`: Support `identity`
* Custom Commands for Endpoint Create/Update for NFS File Share and Multi Cloud Connector
* Added param for nfs-file-share
* Added test for nfs file share
* NFS Tests Working
* multi cloud connector tests passing
* reverted test_storage_mover_endpoint_scenarios.yaml
* NFS endpoint scenarios recording
* azdev style storage-mover PASSED
* Bumped version and added updates in HISTORY.rst
* fix azdev Linter
* azdev linter and style fix
* azdev lint fix
* edit HISTORY.rst as per the guidlines
* updated API version in the test recordings
* Fixed failing tests
* fixed CI issues
* fixed linter issues
* Added tests for endpoint identity commands
* AzDev Linter Fix
---------
Co-authored-by: KARTIK KHULLAR <[email protected]>
* [Release] Update index.json for extension [ storage-mover-1.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137092341&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7fc211418be94abd02a9ecf3bb3189a7a8c305d7
* [Containerapp] `az containerapp sessionpool create/update`: Add health probe support (#9139)
* don't print version check at bottom toolbar (#9166)
* {CI} Add a test workflow to trigger test extension release pipeline on main branch push (#9158)
* Add workflow to trigger Test Extension Release Pipeline on main branch push
* Add a test pipeline to perform a dry run release of new external extension wheel packages to the unified AME storage account.
* Update .github/workflows/TestTriggerExtensionRelease.yml
Co-authored-by: Copilot <[email protected]>
---------
Co-authored-by: Copilot <[email protected]>
* Add new version for firmwareanalysis for 2025-08-02 swagger (#9161)
* Updating firmwareanalysis extension for GA release
- updated models for latest swagger version 2025-08-02
- updated tests
- removed sas url generation test
* fixed broken cli commands and tests
added back upload url test, but with redacted sasurl
* updating version to 2.0.0
* updated changelog
- removed deprecated command
- fixed test to reference all test values
* update examples to make linter happy
---------
Co-authored-by: Mike Kennedy (from Dev Box) <[email protected]>
* [Release] Update index.json for extension [ firmwareanalysis-2.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137217401&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e15cd8099aa6fb791bf571e9282cce009a81a927
* Updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package. (#9102)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* [Release] Update index.json for extension [ nexusidentity-1.0.0b6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137316991&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/55aa877ffd929dd8bf572e57e2277cb4b72e0a11
* [Containerapp] `az containerapp session stop`: Add stop session feature (#9140)
* [SFTP] Initial Preview Release (#8982)
* init managed sftp prototype
* port fix
* more unit tests
* test fixes
* clean tests
* big clean
* fix flake8
* pylint fixes
* fix versioning and summary
* simplify
* sftp cert ests
* sftp connect tests
* organize tests
* support tilde
* clean logged out logs
* az sftp cert expiration
* az sftp cert argument combination tests
* parameterize some tests
* az sftp connect arg combos
* remove batch mode
* unit tests
* simplify
* update args and summary
* minor changes and add basic scenario tests
* style
* remove validators
* remove connectivity utils and client factory
* remove test-only functions
* remove unnecessary wrappers
* remove chmod
* remove batch commands example
* add sftp to service_name.json
* Add copyright header test_sftp_scenario.py
* Update azext_metadata.json
---------
Co-authored-by: Zhiyi Huang <[email protected]>
* [Release] Update index.json for extension [ sftp-1.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137326695&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3ff2094b2eb10d3d6cda59c138befe9e26e7bf46
* (playwrighttesting): Deprecation of playwright cli command (#9156)
Co-authored-by: guptakashish <[email protected]>
* Update firmwareanalysis to GA status (#9172)
- remove azext.isPreview configuration so docs reflect GA status instead
of Preview
- bump version to 2.0.1 so we can release the fix
Co-authored-by: Mike Kennedy (from Dev Box) <[email protected]>
* [Release] Update index.json for extension [ firmwareanalysis-2.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137347377&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2788cf10fb77bde67930b43f62c5454be80c4fe4
* chore: Disable aks-mcp by default, offer --aks-mcp flag to enable it (#9171)
* [Release] Update index.json for extension [ aks-agent-1.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137471450&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/acc900e7a53c3083ed343b75346268cb35a54f6b
* Add blue green upgrade support for aks-preview (#8999)
* Feature/aks acns performance (#9136)
* feat: add acns perf options
* feat: fix issues, add tests
* chore: update history
* Update src/aks-preview/azext_aks_preview/managed_cluster_decorator.py
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/azext_aks_preview/tests/latest/test_managed_cluster_decorator.py
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/linter_exclusions.yml
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/linter_exclusions.yml
Co-authored-by: Copilot <[email protected]>
* fix: address comments
* fix: address comments
* fix: switch to westcentralus
* chore: update version
* fix: undo accidental delete
* chore: update acns perf test, add recording
* fix bad merge
---------
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b38 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137487000&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b06cbbb5beddcc2db1da8d464f20ea09be2fd0f0
* [connectedk8s] Update extension CLI to v1.10.9 (#9177)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* update release notes and version for connectedk8s cli extension (#18)
* remove redundant test files specific to forked repo CI checks
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.9 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137602188&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d4d58b120103cf002b568ed8dcc03085d6dd9bec
* [Communication] Add deliveryReport and Tag parameters to sms send command (#9180)
* Add deliveryReport and Tag parameters to sms send command
* correct version
* update version
* Fix tests
* Fix test and recordings
* Fix recordings
* [Release] Update index.json for extension [ communication-1.14.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137812299&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3e96534a196cd4832ea84859874a34b255397da9
* [amlfs] Add az amlfs auto-import commands (#9134)
* [amlfs] Add az amlfs auto-import commands
* Updating History and setup files
* Update src/amlfs/azext_amlfs/aaz/latest/amlfs/auto_import/_update.py
Co-authored-by: Copilot <[email protected]>
(cherry picked from commit 3d1f1fc728de13efd194a5b2fa529d4f9633a07a)
* Updating create option conflict resolution for shorter length
* Adding re-recorded Import Job test
* Adding re-recorded AutoExportJob tests
* Adding re-recorded test results
---------
Co-authored-by: Aman Jain <[email protected]>
Co-authored-by: Copilot <[email protected]>
* Create role assignment for MSI when enable_vnet_integration is true (#9153)
* update error message
* grant vnet perm
* address comments
* setup.py
* update
* update style
* release version block
* update
* [Release] Update index.json for extension [ amlfs-1.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137812854&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/8357d6f854d23360cfe0dc5d94c2c616fea5bebb
* Managed Network Fabric - Removing the `externalnetwork update-bfd-administrative-state` command as it is not supported by the API. (#9182)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* removing unsupported operation
* removing unsupported operation
* Retrigger GitHub Actions
* [Release] Update index.json for extension [ managednetworkfabric-8.1.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137813062&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1c1130586dde43a58feb173f23366c03cb5bc56a
* Update the layer hashes for image which has changed and pull specific sha (#9174)
* {CI} Sync resourceManagement.yml according To ADO Wiki Page - Service Contact List (#9197)
* Network Cloud Preview Version 4.0.0b1 for 2025-07-01-preview (#9057)
* new version of networkcloud cli
* updating min version
* pushing some updates
* fix run command for storage appliance on windows
* update history
---------
Co-authored-by: Nafiz Haider <[email protected]>
* [Release] Update index.json for extension [ networkcloud-4.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137934227&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2105ee9ce3a5d929eadc6168b773e9edaf4626e2
* [AKS] Add option AzureLinuxOSGuard and AzureLinux3OSGuard to --os-sku for az aks nodepool add and az aks nodepool update (#9147)
* [Release] Update index.json for extension [ aks-preview-18.0.0b39 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137942863&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ce952e4f70216f250df394de9923dfb27da0a181
* {Zones} Pin minCliCoreVersion 2.72.0 as the latest CLI version before this extension was released. Remove incompatibility with previous CLI core version. (#9200)
* [Release] Update index.json for extension [ zones-1.0.0b5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137945712&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fe864e4ac75ea7a928a9bde0b4d925e97d7bfd04
* exclude tests folder (#9213)
* new release (#9218)
* [AKS] Add option Windows2025 to --os-sku for az aks nodepool add (#9178)
* arcdata version bump to 1.5.26 (#9148)
Co-authored-by: Melody Zhu <[email protected]>
* {AKS} Fix test case `test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id` (#9221)
* [AKS] Fix --aks-mcp flag to accept true/false values (#9231)
Simplified the aks-mcp parameter by removing custom positive/negative labels
and using the default three_state_flag behavior to properly handle true/false values.
* [AKS Agent] Bump aks-mcp version to v0.0.9 (#9236)
* [AKS Agent] Bump aks-mcp version to v0.0.9
* [AKS Agent] Bump aks-agent version to 1.0.0b4
* [Release] Update index.json for extension [ aks-agent-1.0.0b4 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138354998&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fa62bf336ebe4577b3fc7b0a61247f5ec0e931d3
* Managed Network Fabric - Adding nullable to all ARM-ID fields to allow clearing the values (#9216)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* removing unsupported operation
* removing unsupported operation
* Retrigger GitHub Actions
* Adding nullable to all ARM-ID fields
* Adding nullable to all ARM-ID fields
* fixing versioning
* {stream-analytics} Support with Azure Function (#9179)
* migrate to aaz, support with Azure Function
* remove cf, run live test
* update version
* [Release] Update index.json for extension [ managednetworkfabric-8.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138359475&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2453de18c687e700812af0fbebbef314df28411f
* [Release] Update index.json for extension [ stream-analytics-1.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138359965&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ef3c612878cb4f2be583449fe12578941952109e
* [confcom] Add tests for acipolicygen (#9199)
* Add tests for acipolicygen on arm template
* Add missing sha based references
* Remove helper script
* Add a test for fragments
* Skip test with known issue
* Skip exclude default fragment tests for known issue
* Update missed rego policies
* Fix the curdir of acipolicygen test runner
* [confcom] Bump the infra fragment minimum svn to 4 (#9238)
* Bump the infra fragment minimum svn to 4
* Bump version
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138363679&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/f4f6815128332be637ef1eaf6d9f27753ac785c8
* AKS: Change --enable-azure-container-storage --disable-azure-container -storage behavior and add --container-storage-version (#9138)
* [Release] Update index.json for extension [ aks-preview-18.0.0b40 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138547011&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/737b240c25351488f0c9ba79c9dfc886d083d52f
* AOSM CLI - Fixing a zip-slip security bug for code that was using tar.extractall() on `nfd build` command (#9234)
* AOSM CLI - Fixing a zip-slip security bug for code that was using tar.extractall() on `nfd build` command
* fixing tests
* fixing tests
* review updates
---------
Co-authored-by: Daniel Steven <[email protected]>
* [Release] Update index.json for extension [ aosm-2.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138548638&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/966e8d89e58db94e98c6907a896cc58c7cbfd6fd
* Skip none overrides on localdns profile (#9188)
* Add JWT Authenticator commands to aks-preview (#9189)
* [ Workload-Orchestration ] Added Bulk Management Commands (#9246)
* Workload orchestration 3.1.0
* Update version
* Update version
* Adding example
* Adding example
* Removing pem files
* Updating api version
* Fixing tests
* Fixing tests
* Backward Compatible
---------
Co-authored-by: Atharva <[email protected]>
* [Release] Update index.json for extension [ workload-orchestration-4.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138573512&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d378651f9ff52200278ac797b9e245d179efad55
* Fix merge conflict between new tests and default min svn bump (#9241)
* Add NG of type subnet support (#9244)
* [Release] Update index.json for extension [ network-manager-3.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138664427&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/8e30da7574fee6e8695f7cbe1b2b10a7bab76940
* [connectedk8s] Update extension CLI to v1.10.10 (#9254)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* Parameterize for airgapped clouds (#5)
* Add parameterization for the airgapped clouds
* Fix azdev style
* MCR path function
* azdev, ruff, and mypy
---------
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
* Oras client fix to work with different MCRs (#6)
Co-authored-by: mmcneal <[email protected]>
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* Update cluster diagnostics image to 1.29.3 (#7)
* Update cluster diagnostics helm chart to 1.29.3
* Fix lint issues
---------
Co-authored-by: bgriddaluru <[email protected]>
* RBAC deprecation & fix the issue
* typo
* fix comments
* update tests
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* rebase
* fix tests
* fix version
* fix mypy, lint
* fix test
* fix test
* fix test
* fix test
* fix test
* rename test
* deprecate flags
* rebase
* rebase
* bump version for release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* remove redundant test files
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: Vineeth Thumma <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.10 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138674669&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e03fa94b705e6ec9957f77b909845350d186b47a
* Evals system for aks-agent (#9219)
* fix: acns-datapath-acceleration-mode None should set the API field correctly (#9255)
* [Release] Update index.json for extension [ aks-preview-18.0.0b41 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138690044&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/961d5126fccf51bc8801600a00e85776e9b7cd2b
* Azure CLI to manage Site resources (#9181)
* Site cli extension changes
* removing beta
* Allowing labels deletion
* removing beta from version history
* Correcting argument
* Correcting format
* Updated readme
* Adding beta to version
* Updating service_name file with site entry
* [Release] Update index.json for extension [ site-1.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138696727&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/4a4e750e807ee47001be3bfa132d117931e66052
* Azure Firewall Autoscale Configuration (#9235)
* Azure Firewall Autoscale Configuration
* bump version
* update recordings for tests
* reset of recordings
* Try to fix recording for test_azure_firewall_policy_explicit_proxy
* non-dynamic test value
* Use sas token key
* Remove explicit proxy test
* [Release] Update index.json for extension [ azure-firewall-1.4.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138818987&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b030b92555c22dbbaade2b867793b72e7aa14095
* Managed Network Fabric - Removing commands that are not supported by the API. (#9266)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* [Release] Update index.json for extension [ managednetworkfabric-8.2.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139155356&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/59ba8a14aba85101d8e41c6c1a8789d4b65aed12
* [AKS] Add support for OSSKU Flatcar to cluster create/nodepool create (#9240)
* [storage-discovery] 09-01 stable cli extension (#9230)
mark operations stable
update setup.py and HISTORY.rst
remove azext.isPreview from azext_metadata.json
* {AKS} Fix role assignment failure when using azure-cli version >= `2.77.0`. (#9267)
* [Release] Update index.json for extension [ storage-discovery-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139171604&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2ebf49eb7017ef71056316875e240c0c76a71cc6
* [Release] Update index.json for extension [ aks-preview-18.0.0b42 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139172224&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/af54e9d799ca3d4da6796ba46da47474bde7bf4e
* Add new parameter to enable Dnstap logging in Azure Firewall (#9271)
* Adding new parameter enable-dnstap-logging
* Small nit
* Small nit2
* Remove comma
* Update history
* update test recording
* Update setup
---------
Co-authored-by: Bhumika Kaur Matharu <[email protected]>
* [Release] Update index.json for extension [ azure-firewall-1.5.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139595971&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/05c62a2a4793c75960b2fda7aa920574522be3b4
* Add LocalDNS Live Tests for valid and invalid scenarios (#9252)
* skip none overrides on localdns profile
* update history rst
* refactor to process dns overrides func
* move overrides function to helper file
* apply linter suggestions
* add localdnsconfig folder
* add more tests
* add new json files
* add default dns overrides
* add more test cases
* move tests around, move invalid cases to another file
* add back import semver
* reorder the existing tests
* delete preferred mode only
* delete null.json
* remove redundant json file
* remove redundant json file
* fix the mistake at line 3349
* forgot that i put all the configs in data/localconfig folder
* remove unused file
* spelling error
* fix default dnsOverrides check when we create agentpool with required mode only
* restore localdnsconfig file
* delete extra property case from invalid test file
* add extra property cases in src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py
* add extra property files
* check for defaulted *dnsOverrides when making agent pool with mode: required only
* comment out cleanup in test_aks_nodepool_add_with_localdns_required_mode
* add more logging for debugging
* add print statements in src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py for debugging
* only initialize the dictionaries if dnsoverrides are provided
* process dns overrides only when dns overrides are provided
* consolidate duplicated build_localdns_profile function
* move invalid cases to line 4133
* update test_aks_commands.py
* look for vnetDnsOverrides and kubeDNSOverrides keys, case-insensitive
* fix test_aks_nodepool_add_with_localdns_required_mode_single_vnetdns
* check for dictionary for build_override
* update failing test cases
* rename from required_mode_extra_property.json -> required_mode_kubedns_extra_property.json
* fix azdev style
* temporarily add self.fail statements s.t. i can see the error_message
* change from assertTrue to assertIn with more specific error msg, delete un-needed test case
* change from print to debug
* remove logger.debug line to print localdnsprofile
* add null config file
* fix the tests
* fix the tests
* update src/aks-preview/HISTORY.rst with a new note under 18.0.0b42
* update src/aks-preview/HISTORY.rst
* Revert "add print statements in src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py for debugging"
This reverts commit b7474385a8bcb5088ea8539923a4eca5ab366ba3.
* update src/aks-preview/HISTORY.rst
* Revert "add more logging for debugging"
This reverts commit 1786254f78627af5926efa438163843de19657dd.
* mix the casing for *dnsoverrides
* throw an exception from cli if the values of kubednsoverrides or vnetdnsoverrides are not type dict
* add tests for null and non-dict overrides
* make the keys of localdnsprofile mixed-case
* add required_mode_null_dnsOverrides.json and required_mode_number_dnsOverrides.json
* correct the error message I'm looking for, for non-dict dns overrides
* remove print stmt from src/aks-preview/azext_aks_preview/_helpers.py
* add check for DNS override settings
* update the test with dns override settings check
* update assertIn msg for test_aks_nodepool_add_with_localdns_required_mode_partial_invalid
* break down InvalidArgumentValueError msg into two lines
* update existing cassette files
* new cassette files for new tests
* add three additional cassette files I did not commit before
* expect InvalidArgumentValueError when None is provided for DNS overrides
* update AKSPreviewAgentPoolUpdateDecoratorCommonTestCase.common_update_localdns_profile
* revert the import statement for from azure.cli.command_modules.acs.tests.latest.mocks import
* Add a new line
* Revert "Add a new line"
This reverts commit 2c347c3c6d5afed2bd36aa32818f1dfdbae9a44e.
* update version in src/aks-preview/setup.py to align with azure-cli-extensions/src/aks-preview/HISTORY.rst
---------
Co-authored-by: juanbe <[email protected]>
Co-authored-by: Juan Diego Bencardino <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b43 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139618131&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ba0a97c85caacd81d7863a190f1d1f68215d142c
* [Network] Feature network NSP 2024 10 01 (#9101)
* Add changes related 2024-10-01
* Update changelog
* Update tests
* Updated tests
* updated tests recordings
* Update test recordings
* [Release] Update index.json for extension [ nsp-1.1.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139724051&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/4790cd2e5819a8d739982c378af223756c0fa0ec
* Bump fleet az cli extension version to 1.7.0 (#9277)
* bump to 1.6.5
* update the version to 1.7.0
* [Release] Update index.json for extension [ fleet-1.7.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139749279&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/75972f4473c184b540e9514bfd8cddaa2104f1ae
* {AKS} Vendor new SDK and bump API version to 2025-08-02-preview (#9276)
* {redisenterprise} breaking change warning (#9272)
* breaking change warning
* Update src/redisenterprise/_breaking_change.py
Co-authored-by: Copilot <[email protected]>
* style fix
* update version
---------
Co-authored-by: Nikita Garg <[email protected]>
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ redisenterprise-1.2.2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139758024&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/cfa24a9086847c85fb737b625c9e50546b8c29b3
* Added SQL DB Retry, SQLVM Delete and SQLMI Delete commands (#9256)
* Added SQL DB Retry, SQLVM Delete and SQLMI Delete commands
* Updates.
* Updates
---------
Co-authored-by: Amarjeet Kumar <[email protected]>
* [Release] Update index.json for extension [ datamigration-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139765686&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/19559b67b7f99bec3a057327a4483f90059e9729
* {Containerapp} Update recording files (#9281)
* hide the --enable-managed-system-pool option for now (#9278)
* hide the --enable-managed-system-pool optoin for now
* add history
* keep _help.py
* fix style
* update setup.py
---------
Co-authored-by: Hao Yuan <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b44 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140008104&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/bfb734ec564d1cfaa7b94216ea34a20fd78a9050
* Network Cloud CLi - Fixing zip-slip vulnerability in custom operations (#9282)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* Network Cloud CLi - Fixing zip-slip vulnerability
* updating history and setup.py versions
* linting fixes
* [Release] Update index.json for extension [ networkcloud-4.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140083779&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/aff3034796db390283b7556306fc1c5847d0700d
* [confcom] Add a warning and path for default change for stdio (#9203)
* Add a warning and path for default change for stdio
* Satisfy azdev style
* Fix help string for --enable-stdio
* Refactor resolving stdio into it's own function
* Bump version
* Bump minor version
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140089922&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/de110edc4faa6464bfa82fe8dc64f46c34ad1d77
* Stumpaudra/fleet/managed namespace (#9035)
* base recalibration
update
update
update
update
update
update
removing 0401
got tests to work
update
pylint
update
pylint
update
adding get credential commansd
update
pylint
addressing comments
simplifying namespace
updates
updates
lint
style
pylint
updates
updates to member
updates
updates
updates
style
updates
update
update
updated test recordings
removing unwanted files
updates
updating metadata
linter
updating version/history
setup
updates
style
style
update style
flake8
remove preview
making hubful recording use global endpoint
squash-managednamespace implementation
* changing defaults, updating help message
* updates
* adding validation none check
* updates
* version
---------
Co-authored-by: audrastump <[email protected]>
Co-authored-by: Jim Minter <[email protected]>
* [Release] Update index.json for extension [ fleet-1.8.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140092040&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b980420e190b0e3d2ea39605c9c886372b33c4c1
* [AKS] `az aks update`: Add new parameter `--kms-infrastructure-encryption` to enable KMS infrastructure encryption on an existing cluster. (#9287)
* Used vendored application insight sdk (#9184)
* vendor SDK
* Update SDK reference
* Fix test
* [Release] Update index.json for extension [ spring-1.28.5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140102657&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/60bc46cafbca3c684431a741acafe1161cd4416c
* [redisenterprise] update breaking change file loc (#9294)
* update file loc
* update version
* style fix
* style fix
---------
Co-authored-by: Nikita Garg <[email protected]>
* [Release] Update index.json for extension [ redisenterprise-1.2.3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140114066&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/351dba70de70d6d32c6ddb414ad6bdfa1549ad70
* Network Cloud CLI version 2025-09-01 GA (#9295)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* Network Cloud CLi - Fixing zip-slip vulnerability
* updating history and setup.py versions
* linting fixes
* Netowrk Cloud CLI version 2025-09-01 GA
* [Release] Update index.json for extension [ networkcloud-4.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140209385&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/c239b89d4477e91c26d4a41c9d716dcbe762432b
* {Containerapp} Update test and recording files (#9291)
* update (#9297)
* [Release] Update index.json for extension [ containerapp ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140238524&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/26143775307ca13b9b86a530ed0cc3f27f789ea9
* [connectedmachine] update get extension image command (#9187)
* release 24-11
* update tests
* update version
* fix version number
* fix style
* fix style issue
* update tests
* update tests
* update tests
* update tests
* update tests
* upate test
* update test
* update test
* update test
* update commands
* update
* Update src/connectedmachine/azext_connectedmachine/aaz/latest/connectedmachine/extension/image/_show.py
Co-authored-by: Copilot <[email protected]>
* Update src/connectedmachine/azext_connectedmachine/aaz/latest/connectedmachine/extension/image/_list.py
Co-authored-by: Copilot <[email protected]>
* update tests
* update
* update test
* update
* update
---------
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ connectedmachine-2.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140341424&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/a9b5e3cd0f474731252d2e171f5fa027b7d7f600
* feat: remove --enable-custom-ca-trust and --disable-custom-ca-trust options (#9283)
* [Release] Update index.json for extension [ aks-preview-19.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140361299&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/89bbdac512889150b71f005451f22a53d1ab330a
* add index (#9299)
* [servicelinkerpasswordless] fix logging issue (#9300)
* [Release] Update index.json for extension [ serviceconnector-passwordless-3.3.6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140371627&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/695ae6076fd9aaa53012d5d62b3dbff044d75ba6
* Update link in azcli_aks_live_test README (#9247)
* updated the api version to 2025-06-01 (#9296)
Co-authored-by: Ravindra Dongade <[email protected]>
* initial checking for 2025-07-15 stable CLI (#9269)
* [Release] Update index.json for extension [ managednetworkfabric-9.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140490277&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fe7ebde6039cb517af4224dc18916a3c389d916c
* [connectedk8s] Update extension CLI to v1.10.11 (#9304)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* Parameterize for airgapped clouds (#5)
* Add parameterization for the airgapped clouds
* Fix azdev style
* MCR path function
* azdev, ruff, and mypy
---------
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
* Oras client fix to work with different MCRs (#6)
Co-authored-by: mmcneal <[email protected]>
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* Update cluster diagnostics image to 1.29.3 (#7)
* Update cluster diagnostics helm chart to 1.29.3
* Fix lint issues
---------
Co-authored-by: bgriddaluru <[email protected]>
* RBAC deprecation & fix the issue
* typo
* fix comments
* update tests
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* rebase
* fix tests
* fix version
* fix mypy, lint
* fix test
* fix test
* fix test
* fix test
* fix test
* rename test
* deprecate flags
* rebase
* rebase
* bump version for release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* remove hardcoded public ARM endpoint url for fairfax and mooncake (#24)
* Bug Fix for FFX mcr url (#22)
* [connectedk8s] update release notes and version (#26)
* remove redundant test files
* remove change not relevant to connectedk8s release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: Vineeth Thumma <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
Co-authored-by: hapate <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.11 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140504087&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/425351566b46b9adca5cbf821b6f526fc572004b
* [AKS] Add --enable-opentelemetry-metrics and --enable-opentelemetry-logs to monitoring addons in aks-preview (#9149)
* [Release] Update index.json for extension [ aks-preview-19.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140506301&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d2beb32eaae782455245a986bc6ce59aaffcd213
* {AKS} Bump holmesgpt and add feedback slash command (#9261)
* [Release] Update index.json for extension [ aks-agent-1.0.0b5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140510943&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/07cf2351f42a9c1e86e91c4f4b2b5f6278cca311
* Fix doc link to dmverity-vhd tool (#9068)
Moved to
- https://github.com/microsoft/integrity-vhd
Removal in original location in
- https://github.com/microsoft/hcsshim/pull/2318
* [confcom] Fix multiple issues with `acipolicygen --diff` (#9258)
* Only attempt to parse ccePolicy if --diff is specified
* Fix parsing ccePolicies with no container defintions
* Satisfy azdev style
* Fix --infrastructure-svn and --fragments-json combo (#9264)
* [AKS] Implement platform-managed-keys (PMK) awared validation for KMS customer-managed-key (CMK) (#9301)
* [Release] Update index.json for extension [ aks-preview-19.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140528984&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/dbe4e9bedb0289cb9a62822d3597dc89d2abad24
* Temporarily remove networkcloud 4.0.0 from index.json (#9305)
* [Workload-Orchestration] Updated response schema for review and tsv list calls to include l1l2 state properties (#9284)
* Updated review and tsv list commands to include l1l2 in response
* Hide unnecessary properties in response for review and tsv list
* latestActionTriggeredBy spell fix
* CLI history and version update
* ad…
* [Release] Update index.json for extension [ neon-1.0.0b6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135751142&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/64ab52906fe23694a8f957a80268da563663ddca
* {AKS} Remove the sku preview flag from help command for AKS automatic (#9120)
* [Release] Update index.json for extension [ aks-preview-18.0.0b32 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135839673&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7d5b6575a74ab795aa41a7fe6c42dc6932b6d193
* [ Workload-Orchestration ] Add Context & Solution Management Commands (#9037)
* added
* commit
* Made Changes
* Added change
* Made changes
* List solution revisions and instances
* Made changes rr
* Made change
---------
Co-authored-by: Atharva <[email protected]>
Co-authored-by: Manaswita Chichili <[email protected]>
* [AKS] `az aks create`: Add new parameter `--kms-infrastructure-encryption` to enable KMS infrastructure encryption. (#9071)
* Revert "[Release] Update index.json for extension [ neon-1.0.0b5 ]" (#9118)
This reverts commit 616990f9572fb222bf6053f617b014ec34eda4e9.
* [Release] Update index.json for extension [ aks-preview-18.0.0b33 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135846382&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/042aa4e33a6085925b71e3b275500601f13e8979
* [ServiceConnector-passwordless] bump version for psycopg2-binary (#9075)
* bump version for psycopg2-binary
* update
* Update CLI command descriptions for newrelic (#9119)
* [Release] Update index.json for extension [ new-relic-1.0.2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135848078&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e1df567b8f3ba18f6382b1aa87c591308de8b707
* [Release] Update index.json for extension [ serviceconnector-passwordless-3.3.5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135848077&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/42db1eb7e72d87b899efa382e0aa737982d53604
* Feature/ga release (#9123)
* Update version from 1.0.0b6 to 1.0.0
* Update HISTORY.rst with release information
* [Release] Update index.json for extension [ neon-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135957068&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/18785cf742c9611cae46cbce3fed1e55d0f990e0
* aks add nodepool add to support machines pool (#9121)
Co-authored-by: Jianping Zeng <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b34 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135967911&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1d48b879bc1179ca29059c677bab35e70e71972f
* {AKS} Vendor new SDK and bump API version to 2025-07-02-preview (#9131)
* [Release] Update index.json for extension [ aks-preview-18.0.0b35 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135984989&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b79f617d7ff5fb6c578dc7d00e8a1bfd7831f164
* Added changes (#9130)
Co-authored-by: Atharva <[email protected]>
* [Release] Update index.json for extension [ workload-orchestration-3.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135985917&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/715f0c64382b3a6db5dfc9310b186a959f87a459
* [SCVMM] Fixed create_from_machines command for VM Instance creation (#9107)
* [Release] Update index.json for extension [ scvmm-1.2.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136097084&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/06d116ebcf1386c562b75e3cc7fd3acf37bc64ce
* [k8s-extension] Update extension CLI to v1.7.0 (#9126)
* add pester tests for k8s-extension
* fix testcases for nodepool image issues (#5)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* Extend ContainerInsights Extension for high log scale mode support (#9)
* update python version to 3.13 (#10)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* Add k8s-extension troubleshoot phase 1: Infrastructure setup. (#11)
* [k8s-extension] Update extension CLI to v1.7.0 (#13)
* remove redundant test files
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bragi92 <[email protected]>
Co-authored-by: Long Wan <[email protected]>
Co-authored-by: Andres Borja <[email protected]>
* [Release] Update index.json for extension [ k8s-extension-1.7.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136097815&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/40c0147fe008dcf56c451193d06cc8f54136b525
* Fix help text for `fleet list` command (#9114)
* [confcom] Adding standalone fragment support (#9097)
* ensure that oras discover doesn't error when the remote image doesn't exist
* updating version
* adding print for binary version
* commenting out some tests due to docker incompatibility
* pull image before saving to tar
---------
Co-authored-by: Heather Garvison <[email protected]>
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136107318&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/bca2ea1679e62d67a08edd9c4396d4d53b83c462
* feat: Add Neon PostgreSQL preview API commands with parameter mapping… (#9133)
* feat: Add Neon PostgreSQL preview API commands with parameter mapping fixes
- Added 13 new commands for Neon PostgreSQL 2025-06-23-preview API
- Fixed critical parameter mapping issues in endpoint/database/role create commands
- Added comprehensive test suite with 6 test methods covering all functionality
- Updated azext_metadata.json with new command registrations
New Commands Added:
- az neon postgres endpoint create/list/delete
- az neon postgres neon-database create/list/delete
- az neon postgres neon-role create/list/delete
- az neon postgres get-postgres-version
Parameter Mapping Fixes:
- Fixed URL parameter mapping to use project_id/branch_id when available
- Resolved 'branch not found' errors in create commands
- Ensured proper API endpoint construction for nested resources
Testing:
- All 6 tests passing (100% success rate)
- Comprehensive validation of parameter mapping fixes
- Help command testing for all new commands
- Parameter validation testing for required fields
* Add command examples to fix linter violations
- Added examples for endpoint create command
- Added examples for get-postgres-version command
- Added examples for neon-role create command
- Added examples for neon-database create command
- Examples include common usage patterns and parameter variations
* fix: Add parameter mapping fixes for create commands
- Add project_id parameter to endpoint, role, and database create commands
- Implement URL parameter mapping with getattr/hasattr fallback pattern
- Fix endpoint list command parameter mapping
- Enable proper API URL construction for all create operations
- All tests passing (6/6) with real Azure resource validation
- Successfully tested with live Azure resources (endpoints, roles, databases created)
* fix: Correct help examples to fix linter errors
- Fix --attributes parameter examples to use proper JSON format instead of space-separated key=value pairs
- Replace invalid --suspend-timeout-minutes parameter with valid --size parameter in endpoint create example
- Resolve HIGH severity linter error: faulty_help_example_parameters_rule
- All help examples now use correct Azure CLI parameter syntax
* fix: Add linter exclusions for missing_command_example
- Add exclusions for neon postgres commands to resolve git-based linter check failure
- Commands have proper help examples but git-based linter doesn't detect them for AAZ commands
- Excludes: endpoint create, neon-role create, neon-database create, get-postgres-version
- Resolves HIGH severity missing_command_example linter error in CI pipeline
* feat: Remove wait commands and update to version 1.0.1b1
- Remove wait command files: branch/_wait.py, project/_wait.py, organization/_wait.py
- Update __init__.py files to remove wait command imports
- Add linter exclusions for require_wait_command_if_no_wait rule for all command groups
- Update version to 1.0.1b1 in setup.py
- Add comprehensive changelog entry to HISTORY.rst documenting all improvements:
* 25 commands across 8 command groups
* Parameter mapping fixes with real Azure resource validation
* Help examples and linter compliance
* Successful testing with live Azure subscription
- Wait commands removed as operations complete quickly and were unnecessary
- All tests passing (6/6) and functionality verified
* docs: Update HISTORY.rst with concise 1.0.1b1 changelog
- Streamline changelog entry for version 1.0.1b1
- Focus on key features: preview commands for new entities
- Highlight important changes: wait commands removal, linter exclusions
- Emphasize successful real Azure resources validation testing
- Maintain clear and readable documentation format
* [Release] Update index.json for extension [ neon-1.0.1b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136319375&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fb81781e93568fcc494b8f93ef71789d555270c3
* Release ArcAppliance CLI 1.6.0 (#9137)
Co-authored-by: Sai Sankar Gochhayat <[email protected]>
* [AKS] Add option `AzureLinux3` to `--os-sku` for `az aks nodepool add` and `az aks nodepool update` (#9095)
* chore: add AzureLinux3 OSSKU enum value
Signed-off-by: Calvin Shum <[email protected]>
* Complete AzureLinux3 OSSKU implementation
- Add changelog entry for version 18.0.0b29
- Bump version to 18.0.0b29
- Follow exact pattern from Ubuntu2204/Ubuntu2404 implementation
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
Signed-off-by: Calvin Shum <[email protected]>
* add recording test
* Revert "Complete AzureLinux3 OSSKU implementation"
This reverts commit 588cb2a6dd1cbdbce9d68ec14f12c711a838d737.
* Bump version to 18.0.0b34
- Add changelog entry for version 18.0.0b34
- Bump version to 18.0.0b34
* Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml
* Revert "Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml"
This reverts commit 5a20e1beced030fa0109f6b1d06ab187653617f2.
* Reapply "Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml"
This reverts commit e702361678f026883f01b139fe25c3ebd02fd953.
---------
Signed-off-by: Calvin Shum <[email protected]>
Co-authored-by: anujmaheshwari1 <[email protected]>
Co-authored-by: Claude <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b36 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136341093&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/a7b3facf078b03c10982a54a7d870af4945c4575
* Fix resource creation in datadog (#9144)
* fix resource creation
* update attribute
* update example
* update version
* update version
---------
Co-authored-by: Shivansh Agarwal <[email protected]>
* [Release] Update index.json for extension [ datadog-2.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136437677&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/c5193f8f9b7b9d82c9c7d9befc1a99e128a5271a
* Update AVNM connectivity configuration CLI to use 2024-07-01 API version (#9125)
* Generated Azure CLI extension changes
* Resolve errors in test files
* Add passing tests
* Fix connect-config parameter applies-to-groups
* Update src/network-manager/azext_network_manager/aaz/latest/network/manager/connect_config/_create.py
Co-authored-by: Copilot <[email protected]>
* Update src/network-manager/azext_network_manager/aaz/latest/network/manager/connect_config/_update.py
Co-authored-by: Copilot <[email protected]>
* Passing local tests
* Add parameter options to connect-config
* Increment versio in HISTORT.rst
* Add singular option for applies to groups
* Fix update.py
* fix conflicting options for connect-config
* fix conflicting options for connect-config
* Fix tests to set connect-config singular options
* update version to 3.0.0 in setup.py
* update version to 3.0.0 in HISTORY.rst
* Fix breaking changes related to network manager paramter
* Release version fix
---------
Co-authored-by: Sonal Singh (from Dev Box) <[email protected]>
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ network-manager-2.1.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136442938&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ce3559ea2a57f228cc8939b19d4c7365178ef73d
* [AKS] Add machine cli preview (#9045)
* [amg] Remove essential SKU resource creation (#9128)
* Remove essential SKU resource creation
* Refine arg error msg
* Remove essential SKU resource creation
* Refine arg error msg
* New test recordings
* Redo test recordings
---------
Co-authored-by: Alan Zhang <[email protected]>
* [Release] Update index.json for extension [ amg-2.8.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136575856&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1681210b2e6e1cce1624d1c41e7b32c19d51650b
* Update index.json (#9146)
Drop Public preview version 0.1.4
* [AKS] Autoscaling support for VMs agentpool (#9012)
* add in azure-iot 0.27.0 (#9151)
* [Release] Update index.json for extension [ aks-preview-18.0.0b37 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136721005&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3d006775c9fe3b7167a88cb25d5ea15e1cc7b380
* [Containerapp] `az containerapp up`: Support --kind {functionapp} (#9052)
* add logic to deal with xml format in return error (#9142)
* add logic to deal with xml format in return error
* change as per comments
* change version
* code style
* change version
* [Release] Update index.json for extension [ spring-1.28.4 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136758693&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7a71074d4aebcc402e153876b1a08976081c4f73
* add aks-agent codeowner (#9152)
* feat: Improve user experience of az aks agent with aks-mcp (#9132)
* feat: Improve user experience of az aks agent with aks-mcp
Enhance the user experience of az aks agent, including:
1. Use aks-mcp by default, offering an opt-out flag --no-aks-mcp.
2. Disable duplicated built-in toolsets when using aks-mcp.
3. Manage the lifecycle of aks-mcp binary, including downloading,
updating, health checking and gracefully stopping.
4. Offer status subcommand to display the system status.
Refine system prompt.
5. Smart toolset refreshment when switching between mcp and traditional
mode.
* use --status instead of status
* address ai comments
* style
* add pytest-asyncio dependency
* fix unit tests
* fix(aks-agent/mcp): eliminate “Event loop is closed” shutdown error
- Launch aks-mcp via subprocess.Popen instead of
asyncio.create_subprocess_exec to avoid asyncio transport GC on a closed
loop.
- Add robust teardown: terminate → wait(timeout) → kill fallback, and
explicitly close stdin/stdout/stderr pipes.
- Make is_server_running use Popen.poll() safely.
- Minor: update MCP prompt to prefer kubectl node listing when Azure
Compute ops are blocked by read-only policy.
* {AKS} Clarify model parameter (cherry-pick PR #9145)
Squashed cherry-pick of PR #9145 commits:\n- clarify model parameter\n- adjust command example to pretty print recommendation\n- fix disallowed html tag in deployment name\n- update examples to use model name as deployment name\n- remove redundant starting space in parameter help\n\nExcluded changes to HISTORY.rst and setup.py as requested.
* chore: Add nilo19 and mainerd to aks agent owners
* chore(aks-agent): fix flake8 issues (E306, E261, W291)
* chore(aks-agent): flake8 E261 fix in mcp_manager.py (two spaces before inline comment)
* [Release] Update index.json for extension [ aks-agent-1.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137081945&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/158f3c3e464c781fe6f9e949ffa135fdf03d7a8a
* ML release - 2.39.0 (#9141)
* Compute connect port 22 path fix (#9082)
* port 22 compute connect fix
* add changelog
* CLI v2 2.39.0 (Version/changelog changes) (#9089)
* Pylint fix + History update (#9143)
* pylint fix
* revert unwanted change
* [Release] Update index.json for extension [ machinelearningservices-2.39.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137089933&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e87f842bc6451c3a0a76b87e8fdc02180076cf51
* [Storage-Mover] `az storage-mover endpoint`: Add new endpoints, Support assigning identity (#9109)
* [Storage-Mover] update to api version 2025-07-01; `az storage-mover endpoint`: Support `identity`
* Custom Commands for Endpoint Create/Update for NFS File Share and Multi Cloud Connector
* Added param for nfs-file-share
* Added test for nfs file share
* NFS Tests Working
* multi cloud connector tests passing
* reverted test_storage_mover_endpoint_scenarios.yaml
* NFS endpoint scenarios recording
* azdev style storage-mover PASSED
* Bumped version and added updates in HISTORY.rst
* fix azdev Linter
* azdev linter and style fix
* azdev lint fix
* edit HISTORY.rst as per the guidlines
* updated API version in the test recordings
* Fixed failing tests
* fixed CI issues
* fixed linter issues
* Added tests for endpoint identity commands
* AzDev Linter Fix
---------
Co-authored-by: KARTIK KHULLAR <[email protected]>
* [Release] Update index.json for extension [ storage-mover-1.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137092341&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7fc211418be94abd02a9ecf3bb3189a7a8c305d7
* [Containerapp] `az containerapp sessionpool create/update`: Add health probe support (#9139)
* don't print version check at bottom toolbar (#9166)
* {CI} Add a test workflow to trigger test extension release pipeline on main branch push (#9158)
* Add workflow to trigger Test Extension Release Pipeline on main branch push
* Add a test pipeline to perform a dry run release of new external extension wheel packages to the unified AME storage account.
* Update .github/workflows/TestTriggerExtensionRelease.yml
Co-authored-by: Copilot <[email protected]>
---------
Co-authored-by: Copilot <[email protected]>
* Add new version for firmwareanalysis for 2025-08-02 swagger (#9161)
* Updating firmwareanalysis extension for GA release
- updated models for latest swagger version 2025-08-02
- updated tests
- removed sas url generation test
* fixed broken cli commands and tests
added back upload url test, but with redacted sasurl
* updating version to 2.0.0
* updated changelog
- removed deprecated command
- fixed test to reference all test values
* update examples to make linter happy
---------
Co-authored-by: Mike Kennedy (from Dev Box) <[email protected]>
* [Release] Update index.json for extension [ firmwareanalysis-2.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137217401&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e15cd8099aa6fb791bf571e9282cce009a81a927
* Updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package. (#9102)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* [Release] Update index.json for extension [ nexusidentity-1.0.0b6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137316991&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/55aa877ffd929dd8bf572e57e2277cb4b72e0a11
* [Containerapp] `az containerapp session stop`: Add stop session feature (#9140)
* [SFTP] Initial Preview Release (#8982)
* init managed sftp prototype
* port fix
* more unit tests
* test fixes
* clean tests
* big clean
* fix flake8
* pylint fixes
* fix versioning and summary
* simplify
* sftp cert ests
* sftp connect tests
* organize tests
* support tilde
* clean logged out logs
* az sftp cert expiration
* az sftp cert argument combination tests
* parameterize some tests
* az sftp connect arg combos
* remove batch mode
* unit tests
* simplify
* update args and summary
* minor changes and add basic scenario tests
* style
* remove validators
* remove connectivity utils and client factory
* remove test-only functions
* remove unnecessary wrappers
* remove chmod
* remove batch commands example
* add sftp to service_name.json
* Add copyright header test_sftp_scenario.py
* Update azext_metadata.json
---------
Co-authored-by: Zhiyi Huang <[email protected]>
* [Release] Update index.json for extension [ sftp-1.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137326695&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3ff2094b2eb10d3d6cda59c138befe9e26e7bf46
* (playwrighttesting): Deprecation of playwright cli command (#9156)
Co-authored-by: guptakashish <[email protected]>
* Update firmwareanalysis to GA status (#9172)
- remove azext.isPreview configuration so docs reflect GA status instead
of Preview
- bump version to 2.0.1 so we can release the fix
Co-authored-by: Mike Kennedy (from Dev Box) <[email protected]>
* [Release] Update index.json for extension [ firmwareanalysis-2.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137347377&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2788cf10fb77bde67930b43f62c5454be80c4fe4
* chore: Disable aks-mcp by default, offer --aks-mcp flag to enable it (#9171)
* [Release] Update index.json for extension [ aks-agent-1.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137471450&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/acc900e7a53c3083ed343b75346268cb35a54f6b
* Add blue green upgrade support for aks-preview (#8999)
* Feature/aks acns performance (#9136)
* feat: add acns perf options
* feat: fix issues, add tests
* chore: update history
* Update src/aks-preview/azext_aks_preview/managed_cluster_decorator.py
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/azext_aks_preview/tests/latest/test_managed_cluster_decorator.py
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/linter_exclusions.yml
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/linter_exclusions.yml
Co-authored-by: Copilot <[email protected]>
* fix: address comments
* fix: address comments
* fix: switch to westcentralus
* chore: update version
* fix: undo accidental delete
* chore: update acns perf test, add recording
* fix bad merge
---------
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b38 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137487000&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b06cbbb5beddcc2db1da8d464f20ea09be2fd0f0
* [connectedk8s] Update extension CLI to v1.10.9 (#9177)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* update release notes and version for connectedk8s cli extension (#18)
* remove redundant test files specific to forked repo CI checks
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.9 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137602188&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d4d58b120103cf002b568ed8dcc03085d6dd9bec
* [Communication] Add deliveryReport and Tag parameters to sms send command (#9180)
* Add deliveryReport and Tag parameters to sms send command
* correct version
* update version
* Fix tests
* Fix test and recordings
* Fix recordings
* [Release] Update index.json for extension [ communication-1.14.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137812299&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3e96534a196cd4832ea84859874a34b255397da9
* [amlfs] Add az amlfs auto-import commands (#9134)
* [amlfs] Add az amlfs auto-import commands
* Updating History and setup files
* Update src/amlfs/azext_amlfs/aaz/latest/amlfs/auto_import/_update.py
Co-authored-by: Copilot <[email protected]>
(cherry picked from commit 3d1f1fc728de13efd194a5b2fa529d4f9633a07a)
* Updating create option conflict resolution for shorter length
* Adding re-recorded Import Job test
* Adding re-recorded AutoExportJob tests
* Adding re-recorded test results
---------
Co-authored-by: Aman Jain <[email protected]>
Co-authored-by: Copilot <[email protected]>
* Create role assignment for MSI when enable_vnet_integration is true (#9153)
* update error message
* grant vnet perm
* address comments
* setup.py
* update
* update style
* release version block
* update
* [Release] Update index.json for extension [ amlfs-1.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137812854&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/8357d6f854d23360cfe0dc5d94c2c616fea5bebb
* Managed Network Fabric - Removing the `externalnetwork update-bfd-administrative-state` command as it is not supported by the API. (#9182)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* removing unsupported operation
* removing unsupported operation
* Retrigger GitHub Actions
* [Release] Update index.json for extension [ managednetworkfabric-8.1.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137813062&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1c1130586dde43a58feb173f23366c03cb5bc56a
* Update the layer hashes for image which has changed and pull specific sha (#9174)
* {CI} Sync resourceManagement.yml according To ADO Wiki Page - Service Contact List (#9197)
* Network Cloud Preview Version 4.0.0b1 for 2025-07-01-preview (#9057)
* new version of networkcloud cli
* updating min version
* pushing some updates
* fix run command for storage appliance on windows
* update history
---------
Co-authored-by: Nafiz Haider <[email protected]>
* [Release] Update index.json for extension [ networkcloud-4.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137934227&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2105ee9ce3a5d929eadc6168b773e9edaf4626e2
* [AKS] Add option AzureLinuxOSGuard and AzureLinux3OSGuard to --os-sku for az aks nodepool add and az aks nodepool update (#9147)
* [Release] Update index.json for extension [ aks-preview-18.0.0b39 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137942863&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ce952e4f70216f250df394de9923dfb27da0a181
* {Zones} Pin minCliCoreVersion 2.72.0 as the latest CLI version before this extension was released. Remove incompatibility with previous CLI core version. (#9200)
* [Release] Update index.json for extension [ zones-1.0.0b5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137945712&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fe864e4ac75ea7a928a9bde0b4d925e97d7bfd04
* exclude tests folder (#9213)
* new release (#9218)
* [AKS] Add option Windows2025 to --os-sku for az aks nodepool add (#9178)
* arcdata version bump to 1.5.26 (#9148)
Co-authored-by: Melody Zhu <[email protected]>
* {AKS} Fix test case `test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id` (#9221)
* [AKS] Fix --aks-mcp flag to accept true/false values (#9231)
Simplified the aks-mcp parameter by removing custom positive/negative labels
and using the default three_state_flag behavior to properly handle true/false values.
* [AKS Agent] Bump aks-mcp version to v0.0.9 (#9236)
* [AKS Agent] Bump aks-mcp version to v0.0.9
* [AKS Agent] Bump aks-agent version to 1.0.0b4
* [Release] Update index.json for extension [ aks-agent-1.0.0b4 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138354998&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fa62bf336ebe4577b3fc7b0a61247f5ec0e931d3
* Managed Network Fabric - Adding nullable to all ARM-ID fields to allow clearing the values (#9216)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* removing unsupported operation
* removing unsupported operation
* Retrigger GitHub Actions
* Adding nullable to all ARM-ID fields
* Adding nullable to all ARM-ID fields
* fixing versioning
* {stream-analytics} Support with Azure Function (#9179)
* migrate to aaz, support with Azure Function
* remove cf, run live test
* update version
* [Release] Update index.json for extension [ managednetworkfabric-8.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138359475&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2453de18c687e700812af0fbebbef314df28411f
* [Release] Update index.json for extension [ stream-analytics-1.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138359965&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ef3c612878cb4f2be583449fe12578941952109e
* [confcom] Add tests for acipolicygen (#9199)
* Add tests for acipolicygen on arm template
* Add missing sha based references
* Remove helper script
* Add a test for fragments
* Skip test with known issue
* Skip exclude default fragment tests for known issue
* Update missed rego policies
* Fix the curdir of acipolicygen test runner
* [confcom] Bump the infra fragment minimum svn to 4 (#9238)
* Bump the infra fragment minimum svn to 4
* Bump version
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138363679&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/f4f6815128332be637ef1eaf6d9f27753ac785c8
* AKS: Change --enable-azure-container-storage --disable-azure-container -storage behavior and add --container-storage-version (#9138)
* [Release] Update index.json for extension [ aks-preview-18.0.0b40 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138547011&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/737b240c25351488f0c9ba79c9dfc886d083d52f
* AOSM CLI - Fixing a zip-slip security bug for code that was using tar.extractall() on `nfd build` command (#9234)
* AOSM CLI - Fixing a zip-slip security bug for code that was using tar.extractall() on `nfd build` command
* fixing tests
* fixing tests
* review updates
---------
Co-authored-by: Daniel Steven <[email protected]>
* [Release] Update index.json for extension [ aosm-2.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138548638&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/966e8d89e58db94e98c6907a896cc58c7cbfd6fd
* Skip none overrides on localdns profile (#9188)
* Add JWT Authenticator commands to aks-preview (#9189)
* [ Workload-Orchestration ] Added Bulk Management Commands (#9246)
* Workload orchestration 3.1.0
* Update version
* Update version
* Adding example
* Adding example
* Removing pem files
* Updating api version
* Fixing tests
* Fixing tests
* Backward Compatible
---------
Co-authored-by: Atharva <[email protected]>
* [Release] Update index.json for extension [ workload-orchestration-4.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138573512&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d378651f9ff52200278ac797b9e245d179efad55
* Fix merge conflict between new tests and default min svn bump (#9241)
* Add NG of type subnet support (#9244)
* [Release] Update index.json for extension [ network-manager-3.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138664427&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/8e30da7574fee6e8695f7cbe1b2b10a7bab76940
* [connectedk8s] Update extension CLI to v1.10.10 (#9254)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* Parameterize for airgapped clouds (#5)
* Add parameterization for the airgapped clouds
* Fix azdev style
* MCR path function
* azdev, ruff, and mypy
---------
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
* Oras client fix to work with different MCRs (#6)
Co-authored-by: mmcneal <[email protected]>
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* Update cluster diagnostics image to 1.29.3 (#7)
* Update cluster diagnostics helm chart to 1.29.3
* Fix lint issues
---------
Co-authored-by: bgriddaluru <[email protected]>
* RBAC deprecation & fix the issue
* typo
* fix comments
* update tests
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* rebase
* fix tests
* fix version
* fix mypy, lint
* fix test
* fix test
* fix test
* fix test
* fix test
* rename test
* deprecate flags
* rebase
* rebase
* bump version for release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* remove redundant test files
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: Vineeth Thumma <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.10 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138674669&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e03fa94b705e6ec9957f77b909845350d186b47a
* Evals system for aks-agent (#9219)
* fix: acns-datapath-acceleration-mode None should set the API field correctly (#9255)
* [Release] Update index.json for extension [ aks-preview-18.0.0b41 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138690044&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/961d5126fccf51bc8801600a00e85776e9b7cd2b
* Azure CLI to manage Site resources (#9181)
* Site cli extension changes
* removing beta
* Allowing labels deletion
* removing beta from version history
* Correcting argument
* Correcting format
* Updated readme
* Adding beta to version
* Updating service_name file with site entry
* [Release] Update index.json for extension [ site-1.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138696727&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/4a4e750e807ee47001be3bfa132d117931e66052
* Azure Firewall Autoscale Configuration (#9235)
* Azure Firewall Autoscale Configuration
* bump version
* update recordings for tests
* reset of recordings
* Try to fix recording for test_azure_firewall_policy_explicit_proxy
* non-dynamic test value
* Use sas token key
* Remove explicit proxy test
* [Release] Update index.json for extension [ azure-firewall-1.4.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138818987&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b030b92555c22dbbaade2b867793b72e7aa14095
* Managed Network Fabric - Removing commands that are not supported by the API. (#9266)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* [Release] Update index.json for extension [ managednetworkfabric-8.2.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139155356&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/59ba8a14aba85101d8e41c6c1a8789d4b65aed12
* [AKS] Add support for OSSKU Flatcar to cluster create/nodepool create (#9240)
* [storage-discovery] 09-01 stable cli extension (#9230)
mark operations stable
update setup.py and HISTORY.rst
remove azext.isPreview from azext_metadata.json
* {AKS} Fix role assignment failure when using azure-cli version >= `2.77.0`. (#9267)
* [Release] Update index.json for extension [ storage-discovery-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139171604&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2ebf49eb7017ef71056316875e240c0c76a71cc6
* [Release] Update index.json for extension [ aks-preview-18.0.0b42 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139172224&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/af54e9d799ca3d4da6796ba46da47474bde7bf4e
* Add new parameter to enable Dnstap logging in Azure Firewall (#9271)
* Adding new parameter enable-dnstap-logging
* Small nit
* Small nit2
* Remove comma
* Update history
* update test recording
* Update setup
---------
Co-authored-by: Bhumika Kaur Matharu <[email protected]>
* [Release] Update index.json for extension [ azure-firewall-1.5.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139595971&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/05c62a2a4793c75960b2fda7aa920574522be3b4
* Add LocalDNS Live Tests for valid and invalid scenarios (#9252)
* skip none overrides on localdns profile
* update history rst
* refactor to process dns overrides func
* move overrides function to helper file
* apply linter suggestions
* add localdnsconfig folder
* add more tests
* add new json files
* add default dns overrides
* add more test cases
* move tests around, move invalid cases to another file
* add back import semver
* reorder the existing tests
* delete preferred mode only
* delete null.json
* remove redundant json file
* remove redundant json file
* fix the mistake at line 3349
* forgot that i put all the configs in data/localconfig folder
* remove unused file
* spelling error
* fix default dnsOverrides check when we create agentpool with required mode only
* restore localdnsconfig file
* delete extra property case from invalid test file
* add extra property cases in src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py
* add extra property files
* check for defaulted *dnsOverrides when making agent pool with mode: required only
* comment out cleanup in test_aks_nodepool_add_with_localdns_required_mode
* add more logging for debugging
* add print statements in src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py for debugging
* only initialize the dictionaries if dnsoverrides are provided
* process dns overrides only when dns overrides are provided
* consolidate duplicated build_localdns_profile function
* move invalid cases to line 4133
* update test_aks_commands.py
* look for vnetDnsOverrides and kubeDNSOverrides keys, case-insensitive
* fix test_aks_nodepool_add_with_localdns_required_mode_single_vnetdns
* check for dictionary for build_override
* update failing test cases
* rename from required_mode_extra_property.json -> required_mode_kubedns_extra_property.json
* fix azdev style
* temporarily add self.fail statements s.t. i can see the error_message
* change from assertTrue to assertIn with more specific error msg, delete un-needed test case
* change from print to debug
* remove logger.debug line to print localdnsprofile
* add null config file
* fix the tests
* fix the tests
* update src/aks-preview/HISTORY.rst with a new note under 18.0.0b42
* update src/aks-preview/HISTORY.rst
* Revert "add print statements in src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py for debugging"
This reverts commit b7474385a8bcb5088ea8539923a4eca5ab366ba3.
* update src/aks-preview/HISTORY.rst
* Revert "add more logging for debugging"
This reverts commit 1786254f78627af5926efa438163843de19657dd.
* mix the casing for *dnsoverrides
* throw an exception from cli if the values of kubednsoverrides or vnetdnsoverrides are not type dict
* add tests for null and non-dict overrides
* make the keys of localdnsprofile mixed-case
* add required_mode_null_dnsOverrides.json and required_mode_number_dnsOverrides.json
* correct the error message I'm looking for, for non-dict dns overrides
* remove print stmt from src/aks-preview/azext_aks_preview/_helpers.py
* add check for DNS override settings
* update the test with dns override settings check
* update assertIn msg for test_aks_nodepool_add_with_localdns_required_mode_partial_invalid
* break down InvalidArgumentValueError msg into two lines
* update existing cassette files
* new cassette files for new tests
* add three additional cassette files I did not commit before
* expect InvalidArgumentValueError when None is provided for DNS overrides
* update AKSPreviewAgentPoolUpdateDecoratorCommonTestCase.common_update_localdns_profile
* revert the import statement for from azure.cli.command_modules.acs.tests.latest.mocks import
* Add a new line
* Revert "Add a new line"
This reverts commit 2c347c3c6d5afed2bd36aa32818f1dfdbae9a44e.
* update version in src/aks-preview/setup.py to align with azure-cli-extensions/src/aks-preview/HISTORY.rst
---------
Co-authored-by: juanbe <[email protected]>
Co-authored-by: Juan Diego Bencardino <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b43 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139618131&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ba0a97c85caacd81d7863a190f1d1f68215d142c
* [Network] Feature network NSP 2024 10 01 (#9101)
* Add changes related 2024-10-01
* Update changelog
* Update tests
* Updated tests
* updated tests recordings
* Update test recordings
* [Release] Update index.json for extension [ nsp-1.1.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139724051&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/4790cd2e5819a8d739982c378af223756c0fa0ec
* Bump fleet az cli extension version to 1.7.0 (#9277)
* bump to 1.6.5
* update the version to 1.7.0
* [Release] Update index.json for extension [ fleet-1.7.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139749279&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/75972f4473c184b540e9514bfd8cddaa2104f1ae
* {AKS} Vendor new SDK and bump API version to 2025-08-02-preview (#9276)
* {redisenterprise} breaking change warning (#9272)
* breaking change warning
* Update src/redisenterprise/_breaking_change.py
Co-authored-by: Copilot <[email protected]>
* style fix
* update version
---------
Co-authored-by: Nikita Garg <[email protected]>
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ redisenterprise-1.2.2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139758024&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/cfa24a9086847c85fb737b625c9e50546b8c29b3
* Added SQL DB Retry, SQLVM Delete and SQLMI Delete commands (#9256)
* Added SQL DB Retry, SQLVM Delete and SQLMI Delete commands
* Updates.
* Updates
---------
Co-authored-by: Amarjeet Kumar <[email protected]>
* [Release] Update index.json for extension [ datamigration-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139765686&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/19559b67b7f99bec3a057327a4483f90059e9729
* {Containerapp} Update recording files (#9281)
* hide the --enable-managed-system-pool option for now (#9278)
* hide the --enable-managed-system-pool optoin for now
* add history
* keep _help.py
* fix style
* update setup.py
---------
Co-authored-by: Hao Yuan <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b44 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140008104&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/bfb734ec564d1cfaa7b94216ea34a20fd78a9050
* Network Cloud CLi - Fixing zip-slip vulnerability in custom operations (#9282)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* Network Cloud CLi - Fixing zip-slip vulnerability
* updating history and setup.py versions
* linting fixes
* [Release] Update index.json for extension [ networkcloud-4.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140083779&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/aff3034796db390283b7556306fc1c5847d0700d
* [confcom] Add a warning and path for default change for stdio (#9203)
* Add a warning and path for default change for stdio
* Satisfy azdev style
* Fix help string for --enable-stdio
* Refactor resolving stdio into it's own function
* Bump version
* Bump minor version
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140089922&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/de110edc4faa6464bfa82fe8dc64f46c34ad1d77
* Stumpaudra/fleet/managed namespace (#9035)
* base recalibration
update
update
update
update
update
update
removing 0401
got tests to work
update
pylint
update
pylint
update
adding get credential commansd
update
pylint
addressing comments
simplifying namespace
updates
updates
lint
style
pylint
updates
updates to member
updates
updates
updates
style
updates
update
update
updated test recordings
removing unwanted files
updates
updating metadata
linter
updating version/history
setup
updates
style
style
update style
flake8
remove preview
making hubful recording use global endpoint
squash-managednamespace implementation
* changing defaults, updating help message
* updates
* adding validation none check
* updates
* version
---------
Co-authored-by: audrastump <[email protected]>
Co-authored-by: Jim Minter <[email protected]>
* [Release] Update index.json for extension [ fleet-1.8.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140092040&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b980420e190b0e3d2ea39605c9c886372b33c4c1
* [AKS] `az aks update`: Add new parameter `--kms-infrastructure-encryption` to enable KMS infrastructure encryption on an existing cluster. (#9287)
* Used vendored application insight sdk (#9184)
* vendor SDK
* Update SDK reference
* Fix test
* [Release] Update index.json for extension [ spring-1.28.5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140102657&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/60bc46cafbca3c684431a741acafe1161cd4416c
* [redisenterprise] update breaking change file loc (#9294)
* update file loc
* update version
* style fix
* style fix
---------
Co-authored-by: Nikita Garg <[email protected]>
* [Release] Update index.json for extension [ redisenterprise-1.2.3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140114066&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/351dba70de70d6d32c6ddb414ad6bdfa1549ad70
* Network Cloud CLI version 2025-09-01 GA (#9295)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* Network Cloud CLi - Fixing zip-slip vulnerability
* updating history and setup.py versions
* linting fixes
* Netowrk Cloud CLI version 2025-09-01 GA
* [Release] Update index.json for extension [ networkcloud-4.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140209385&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/c239b89d4477e91c26d4a41c9d716dcbe762432b
* {Containerapp} Update test and recording files (#9291)
* update (#9297)
* [Release] Update index.json for extension [ containerapp ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140238524&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/26143775307ca13b9b86a530ed0cc3f27f789ea9
* [connectedmachine] update get extension image command (#9187)
* release 24-11
* update tests
* update version
* fix version number
* fix style
* fix style issue
* update tests
* update tests
* update tests
* update tests
* update tests
* upate test
* update test
* update test
* update test
* update commands
* update
* Update src/connectedmachine/azext_connectedmachine/aaz/latest/connectedmachine/extension/image/_show.py
Co-authored-by: Copilot <[email protected]>
* Update src/connectedmachine/azext_connectedmachine/aaz/latest/connectedmachine/extension/image/_list.py
Co-authored-by: Copilot <[email protected]>
* update tests
* update
* update test
* update
* update
---------
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ connectedmachine-2.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140341424&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/a9b5e3cd0f474731252d2e171f5fa027b7d7f600
* feat: remove --enable-custom-ca-trust and --disable-custom-ca-trust options (#9283)
* [Release] Update index.json for extension [ aks-preview-19.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140361299&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/89bbdac512889150b71f005451f22a53d1ab330a
* add index (#9299)
* [servicelinkerpasswordless] fix logging issue (#9300)
* [Release] Update index.json for extension [ serviceconnector-passwordless-3.3.6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140371627&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/695ae6076fd9aaa53012d5d62b3dbff044d75ba6
* Update link in azcli_aks_live_test README (#9247)
* updated the api version to 2025-06-01 (#9296)
Co-authored-by: Ravindra Dongade <[email protected]>
* initial checking for 2025-07-15 stable CLI (#9269)
* [Release] Update index.json for extension [ managednetworkfabric-9.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140490277&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fe7ebde6039cb517af4224dc18916a3c389d916c
* [connectedk8s] Update extension CLI to v1.10.11 (#9304)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* Parameterize for airgapped clouds (#5)
* Add parameterization for the airgapped clouds
* Fix azdev style
* MCR path function
* azdev, ruff, and mypy
---------
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
* Oras client fix to work with different MCRs (#6)
Co-authored-by: mmcneal <[email protected]>
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* Update cluster diagnostics image to 1.29.3 (#7)
* Update cluster diagnostics helm chart to 1.29.3
* Fix lint issues
---------
Co-authored-by: bgriddaluru <[email protected]>
* RBAC deprecation & fix the issue
* typo
* fix comments
* update tests
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* rebase
* fix tests
* fix version
* fix mypy, lint
* fix test
* fix test
* fix test
* fix test
* fix test
* rename test
* deprecate flags
* rebase
* rebase
* bump version for release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* remove hardcoded public ARM endpoint url for fairfax and mooncake (#24)
* Bug Fix for FFX mcr url (#22)
* [connectedk8s] update release notes and version (#26)
* remove redundant test files
* remove change not relevant to connectedk8s release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: Vineeth Thumma <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
Co-authored-by: hapate <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.11 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140504087&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/425351566b46b9adca5cbf821b6f526fc572004b
* [AKS] Add --enable-opentelemetry-metrics and --enable-opentelemetry-logs to monitoring addons in aks-preview (#9149)
* [Release] Update index.json for extension [ aks-preview-19.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140506301&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d2beb32eaae782455245a986bc6ce59aaffcd213
* {AKS} Bump holmesgpt and add feedback slash command (#9261)
* [Release] Update index.json for extension [ aks-agent-1.0.0b5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140510943&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/07cf2351f42a9c1e86e91c4f4b2b5f6278cca311
* Fix doc link to dmverity-vhd tool (#9068)
Moved to
- https://github.com/microsoft/integrity-vhd
Removal in original location in
- https://github.com/microsoft/hcsshim/pull/2318
* [confcom] Fix multiple issues with `acipolicygen --diff` (#9258)
* Only attempt to parse ccePolicy if --diff is specified
* Fix parsing ccePolicies with no container defintions
* Satisfy azdev style
* Fix --infrastructure-svn and --fragments-json combo (#9264)
* [AKS] Implement platform-managed-keys (PMK) awared validation for KMS customer-managed-key (CMK) (#9301)
* [Release] Update index.json for extension [ aks-preview-19.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140528984&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/dbe4e9bedb0289cb9a62822d3597dc89d2abad24
* Temporarily remove networkcloud 4.0.0 from index.json (#9305)
* [Workload-Orchestration] Updated response schema for review and tsv list calls to include l1l2 state properties (#9284)
* Updated review and tsv list commands to include l1l2 in response
* Hide unnecessary properties in response for review and tsv list
* latestActionTriggeredBy spell fix
* CLI history and version update
* added separate response builder for 202 response
* [Release] Update index.json for extension [ workload-orchestration-4.1.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140542383&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/808644d4c1c75cc3b071296eeabeb3be692dde36
* {AKS}: intro…
* Compute connect port 22 path fix (#9082)
* port 22 compute connect fix
* add changelog
* CLI v2 2.39.0 (Version/changelog changes) (#9089)
* Pylint fix + History update (#9143)
* pylint fix
* revert unwanted change
* Sync ml-dev with Main (#9365)
* [Release] Update index.json for extension [ spring-1.28.3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135708908&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b86c1c6cc8a7ed8ab98d8ef232a271ab198af094
* Temporarily removed the extension: aks-agent (#9115)
* Revert "Temporarily removed the extension: aks-agent (#9115)" (#9116)
This reverts commit ddc223c9434896ec971e79835d94ff46ca116987.
* Revert "Fix Neon extension: Unify command structure and remove preview status" (#9117)
* Revert "Fix Neon extension: Unify command structure and remove preview status…"
This reverts commit a973f801f0a55b2cef585982852c364c708d5ee1.
* Bump version from 1.0.0b4 to 1.0.0b6
* [Release] Update index.json for extension [ neon-1.0.0b6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135751142&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/64ab52906fe23694a8f957a80268da563663ddca
* {AKS} Remove the sku preview flag from help command for AKS automatic (#9120)
* [Release] Update index.json for extension [ aks-preview-18.0.0b32 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135839673&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7d5b6575a74ab795aa41a7fe6c42dc6932b6d193
* [ Workload-Orchestration ] Add Context & Solution Management Commands (#9037)
* added
* commit
* Made Changes
* Added change
* Made changes
* List solution revisions and instances
* Made changes rr
* Made change
---------
Co-authored-by: Atharva <[email protected]>
Co-authored-by: Manaswita Chichili <[email protected]>
* [AKS] `az aks create`: Add new parameter `--kms-infrastructure-encryption` to enable KMS infrastructure encryption. (#9071)
* Revert "[Release] Update index.json for extension [ neon-1.0.0b5 ]" (#9118)
This reverts commit 616990f9572fb222bf6053f617b014ec34eda4e9.
* [Release] Update index.json for extension [ aks-preview-18.0.0b33 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135846382&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/042aa4e33a6085925b71e3b275500601f13e8979
* [ServiceConnector-passwordless] bump version for psycopg2-binary (#9075)
* bump version for psycopg2-binary
* update
* Update CLI command descriptions for newrelic (#9119)
* [Release] Update index.json for extension [ new-relic-1.0.2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135848078&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e1df567b8f3ba18f6382b1aa87c591308de8b707
* [Release] Update index.json for extension [ serviceconnector-passwordless-3.3.5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135848077&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/42db1eb7e72d87b899efa382e0aa737982d53604
* Feature/ga release (#9123)
* Update version from 1.0.0b6 to 1.0.0
* Update HISTORY.rst with release information
* [Release] Update index.json for extension [ neon-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135957068&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/18785cf742c9611cae46cbce3fed1e55d0f990e0
* aks add nodepool add to support machines pool (#9121)
Co-authored-by: Jianping Zeng <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b34 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135967911&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1d48b879bc1179ca29059c677bab35e70e71972f
* {AKS} Vendor new SDK and bump API version to 2025-07-02-preview (#9131)
* [Release] Update index.json for extension [ aks-preview-18.0.0b35 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135984989&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b79f617d7ff5fb6c578dc7d00e8a1bfd7831f164
* Added changes (#9130)
Co-authored-by: Atharva <[email protected]>
* [Release] Update index.json for extension [ workload-orchestration-3.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=135985917&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/715f0c64382b3a6db5dfc9310b186a959f87a459
* [SCVMM] Fixed create_from_machines command for VM Instance creation (#9107)
* [Release] Update index.json for extension [ scvmm-1.2.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136097084&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/06d116ebcf1386c562b75e3cc7fd3acf37bc64ce
* [k8s-extension] Update extension CLI to v1.7.0 (#9126)
* add pester tests for k8s-extension
* fix testcases for nodepool image issues (#5)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* Extend ContainerInsights Extension for high log scale mode support (#9)
* update python version to 3.13 (#10)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* update readme and version release notes (#6)
* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)
* Add k8s-extension troubleshoot phase 1: Infrastructure setup. (#11)
* [k8s-extension] Update extension CLI to v1.7.0 (#13)
* remove redundant test files
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bragi92 <[email protected]>
Co-authored-by: Long Wan <[email protected]>
Co-authored-by: Andres Borja <[email protected]>
* [Release] Update index.json for extension [ k8s-extension-1.7.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136097815&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/40c0147fe008dcf56c451193d06cc8f54136b525
* Fix help text for `fleet list` command (#9114)
* [confcom] Adding standalone fragment support (#9097)
* ensure that oras discover doesn't error when the remote image doesn't exist
* updating version
* adding print for binary version
* commenting out some tests due to docker incompatibility
* pull image before saving to tar
---------
Co-authored-by: Heather Garvison <[email protected]>
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136107318&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/bca2ea1679e62d67a08edd9c4396d4d53b83c462
* feat: Add Neon PostgreSQL preview API commands with parameter mapping… (#9133)
* feat: Add Neon PostgreSQL preview API commands with parameter mapping fixes
- Added 13 new commands for Neon PostgreSQL 2025-06-23-preview API
- Fixed critical parameter mapping issues in endpoint/database/role create commands
- Added comprehensive test suite with 6 test methods covering all functionality
- Updated azext_metadata.json with new command registrations
New Commands Added:
- az neon postgres endpoint create/list/delete
- az neon postgres neon-database create/list/delete
- az neon postgres neon-role create/list/delete
- az neon postgres get-postgres-version
Parameter Mapping Fixes:
- Fixed URL parameter mapping to use project_id/branch_id when available
- Resolved 'branch not found' errors in create commands
- Ensured proper API endpoint construction for nested resources
Testing:
- All 6 tests passing (100% success rate)
- Comprehensive validation of parameter mapping fixes
- Help command testing for all new commands
- Parameter validation testing for required fields
* Add command examples to fix linter violations
- Added examples for endpoint create command
- Added examples for get-postgres-version command
- Added examples for neon-role create command
- Added examples for neon-database create command
- Examples include common usage patterns and parameter variations
* fix: Add parameter mapping fixes for create commands
- Add project_id parameter to endpoint, role, and database create commands
- Implement URL parameter mapping with getattr/hasattr fallback pattern
- Fix endpoint list command parameter mapping
- Enable proper API URL construction for all create operations
- All tests passing (6/6) with real Azure resource validation
- Successfully tested with live Azure resources (endpoints, roles, databases created)
* fix: Correct help examples to fix linter errors
- Fix --attributes parameter examples to use proper JSON format instead of space-separated key=value pairs
- Replace invalid --suspend-timeout-minutes parameter with valid --size parameter in endpoint create example
- Resolve HIGH severity linter error: faulty_help_example_parameters_rule
- All help examples now use correct Azure CLI parameter syntax
* fix: Add linter exclusions for missing_command_example
- Add exclusions for neon postgres commands to resolve git-based linter check failure
- Commands have proper help examples but git-based linter doesn't detect them for AAZ commands
- Excludes: endpoint create, neon-role create, neon-database create, get-postgres-version
- Resolves HIGH severity missing_command_example linter error in CI pipeline
* feat: Remove wait commands and update to version 1.0.1b1
- Remove wait command files: branch/_wait.py, project/_wait.py, organization/_wait.py
- Update __init__.py files to remove wait command imports
- Add linter exclusions for require_wait_command_if_no_wait rule for all command groups
- Update version to 1.0.1b1 in setup.py
- Add comprehensive changelog entry to HISTORY.rst documenting all improvements:
* 25 commands across 8 command groups
* Parameter mapping fixes with real Azure resource validation
* Help examples and linter compliance
* Successful testing with live Azure subscription
- Wait commands removed as operations complete quickly and were unnecessary
- All tests passing (6/6) and functionality verified
* docs: Update HISTORY.rst with concise 1.0.1b1 changelog
- Streamline changelog entry for version 1.0.1b1
- Focus on key features: preview commands for new entities
- Highlight important changes: wait commands removal, linter exclusions
- Emphasize successful real Azure resources validation testing
- Maintain clear and readable documentation format
* [Release] Update index.json for extension [ neon-1.0.1b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136319375&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fb81781e93568fcc494b8f93ef71789d555270c3
* Release ArcAppliance CLI 1.6.0 (#9137)
Co-authored-by: Sai Sankar Gochhayat <[email protected]>
* [AKS] Add option `AzureLinux3` to `--os-sku` for `az aks nodepool add` and `az aks nodepool update` (#9095)
* chore: add AzureLinux3 OSSKU enum value
Signed-off-by: Calvin Shum <[email protected]>
* Complete AzureLinux3 OSSKU implementation
- Add changelog entry for version 18.0.0b29
- Bump version to 18.0.0b29
- Follow exact pattern from Ubuntu2204/Ubuntu2404 implementation
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
Signed-off-by: Calvin Shum <[email protected]>
* add recording test
* Revert "Complete AzureLinux3 OSSKU implementation"
This reverts commit 588cb2a6dd1cbdbce9d68ec14f12c711a838d737.
* Bump version to 18.0.0b34
- Add changelog entry for version 18.0.0b34
- Bump version to 18.0.0b34
* Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml
* Revert "Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml"
This reverts commit 5a20e1beced030fa0109f6b1d06ab187653617f2.
* Reapply "Update test_aks_nodepool_add_with_ossku_azurelinux3.yaml"
This reverts commit e702361678f026883f01b139fe25c3ebd02fd953.
---------
Signed-off-by: Calvin Shum <[email protected]>
Co-authored-by: anujmaheshwari1 <[email protected]>
Co-authored-by: Claude <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b36 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136341093&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/a7b3facf078b03c10982a54a7d870af4945c4575
* Fix resource creation in datadog (#9144)
* fix resource creation
* update attribute
* update example
* update version
* update version
---------
Co-authored-by: Shivansh Agarwal <[email protected]>
* [Release] Update index.json for extension [ datadog-2.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136437677&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/c5193f8f9b7b9d82c9c7d9befc1a99e128a5271a
* Update AVNM connectivity configuration CLI to use 2024-07-01 API version (#9125)
* Generated Azure CLI extension changes
* Resolve errors in test files
* Add passing tests
* Fix connect-config parameter applies-to-groups
* Update src/network-manager/azext_network_manager/aaz/latest/network/manager/connect_config/_create.py
Co-authored-by: Copilot <[email protected]>
* Update src/network-manager/azext_network_manager/aaz/latest/network/manager/connect_config/_update.py
Co-authored-by: Copilot <[email protected]>
* Passing local tests
* Add parameter options to connect-config
* Increment versio in HISTORT.rst
* Add singular option for applies to groups
* Fix update.py
* fix conflicting options for connect-config
* fix conflicting options for connect-config
* Fix tests to set connect-config singular options
* update version to 3.0.0 in setup.py
* update version to 3.0.0 in HISTORY.rst
* Fix breaking changes related to network manager paramter
* Release version fix
---------
Co-authored-by: Sonal Singh (from Dev Box) <[email protected]>
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ network-manager-2.1.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136442938&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ce3559ea2a57f228cc8939b19d4c7365178ef73d
* [AKS] Add machine cli preview (#9045)
* [amg] Remove essential SKU resource creation (#9128)
* Remove essential SKU resource creation
* Refine arg error msg
* Remove essential SKU resource creation
* Refine arg error msg
* New test recordings
* Redo test recordings
---------
Co-authored-by: Alan Zhang <[email protected]>
* [Release] Update index.json for extension [ amg-2.8.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136575856&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1681210b2e6e1cce1624d1c41e7b32c19d51650b
* Update index.json (#9146)
Drop Public preview version 0.1.4
* [AKS] Autoscaling support for VMs agentpool (#9012)
* add in azure-iot 0.27.0 (#9151)
* [Release] Update index.json for extension [ aks-preview-18.0.0b37 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136721005&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3d006775c9fe3b7167a88cb25d5ea15e1cc7b380
* [Containerapp] `az containerapp up`: Support --kind {functionapp} (#9052)
* add logic to deal with xml format in return error (#9142)
* add logic to deal with xml format in return error
* change as per comments
* change version
* code style
* change version
* [Release] Update index.json for extension [ spring-1.28.4 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=136758693&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7a71074d4aebcc402e153876b1a08976081c4f73
* add aks-agent codeowner (#9152)
* feat: Improve user experience of az aks agent with aks-mcp (#9132)
* feat: Improve user experience of az aks agent with aks-mcp
Enhance the user experience of az aks agent, including:
1. Use aks-mcp by default, offering an opt-out flag --no-aks-mcp.
2. Disable duplicated built-in toolsets when using aks-mcp.
3. Manage the lifecycle of aks-mcp binary, including downloading,
updating, health checking and gracefully stopping.
4. Offer status subcommand to display the system status.
Refine system prompt.
5. Smart toolset refreshment when switching between mcp and traditional
mode.
* use --status instead of status
* address ai comments
* style
* add pytest-asyncio dependency
* fix unit tests
* fix(aks-agent/mcp): eliminate “Event loop is closed” shutdown error
- Launch aks-mcp via subprocess.Popen instead of
asyncio.create_subprocess_exec to avoid asyncio transport GC on a closed
loop.
- Add robust teardown: terminate → wait(timeout) → kill fallback, and
explicitly close stdin/stdout/stderr pipes.
- Make is_server_running use Popen.poll() safely.
- Minor: update MCP prompt to prefer kubectl node listing when Azure
Compute ops are blocked by read-only policy.
* {AKS} Clarify model parameter (cherry-pick PR #9145)
Squashed cherry-pick of PR #9145 commits:\n- clarify model parameter\n- adjust command example to pretty print recommendation\n- fix disallowed html tag in deployment name\n- update examples to use model name as deployment name\n- remove redundant starting space in parameter help\n\nExcluded changes to HISTORY.rst and setup.py as requested.
* chore: Add nilo19 and mainerd to aks agent owners
* chore(aks-agent): fix flake8 issues (E306, E261, W291)
* chore(aks-agent): flake8 E261 fix in mcp_manager.py (two spaces before inline comment)
* [Release] Update index.json for extension [ aks-agent-1.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137081945&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/158f3c3e464c781fe6f9e949ffa135fdf03d7a8a
* ML release - 2.39.0 (#9141)
* Compute connect port 22 path fix (#9082)
* port 22 compute connect fix
* add changelog
* CLI v2 2.39.0 (Version/changelog changes) (#9089)
* Pylint fix + History update (#9143)
* pylint fix
* revert unwanted change
* [Release] Update index.json for extension [ machinelearningservices-2.39.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137089933&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e87f842bc6451c3a0a76b87e8fdc02180076cf51
* [Storage-Mover] `az storage-mover endpoint`: Add new endpoints, Support assigning identity (#9109)
* [Storage-Mover] update to api version 2025-07-01; `az storage-mover endpoint`: Support `identity`
* Custom Commands for Endpoint Create/Update for NFS File Share and Multi Cloud Connector
* Added param for nfs-file-share
* Added test for nfs file share
* NFS Tests Working
* multi cloud connector tests passing
* reverted test_storage_mover_endpoint_scenarios.yaml
* NFS endpoint scenarios recording
* azdev style storage-mover PASSED
* Bumped version and added updates in HISTORY.rst
* fix azdev Linter
* azdev linter and style fix
* azdev lint fix
* edit HISTORY.rst as per the guidlines
* updated API version in the test recordings
* Fixed failing tests
* fixed CI issues
* fixed linter issues
* Added tests for endpoint identity commands
* AzDev Linter Fix
---------
Co-authored-by: KARTIK KHULLAR <[email protected]>
* [Release] Update index.json for extension [ storage-mover-1.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137092341&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/7fc211418be94abd02a9ecf3bb3189a7a8c305d7
* [Containerapp] `az containerapp sessionpool create/update`: Add health probe support (#9139)
* don't print version check at bottom toolbar (#9166)
* {CI} Add a test workflow to trigger test extension release pipeline on main branch push (#9158)
* Add workflow to trigger Test Extension Release Pipeline on main branch push
* Add a test pipeline to perform a dry run release of new external extension wheel packages to the unified AME storage account.
* Update .github/workflows/TestTriggerExtensionRelease.yml
Co-authored-by: Copilot <[email protected]>
---------
Co-authored-by: Copilot <[email protected]>
* Add new version for firmwareanalysis for 2025-08-02 swagger (#9161)
* Updating firmwareanalysis extension for GA release
- updated models for latest swagger version 2025-08-02
- updated tests
- removed sas url generation test
* fixed broken cli commands and tests
added back upload url test, but with redacted sasurl
* updating version to 2.0.0
* updated changelog
- removed deprecated command
- fixed test to reference all test values
* update examples to make linter happy
---------
Co-authored-by: Mike Kennedy (from Dev Box) <[email protected]>
* [Release] Update index.json for extension [ firmwareanalysis-2.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137217401&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e15cd8099aa6fb791bf571e9282cce009a81a927
* Updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package. (#9102)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* [Release] Update index.json for extension [ nexusidentity-1.0.0b6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137316991&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/55aa877ffd929dd8bf572e57e2277cb4b72e0a11
* [Containerapp] `az containerapp session stop`: Add stop session feature (#9140)
* [SFTP] Initial Preview Release (#8982)
* init managed sftp prototype
* port fix
* more unit tests
* test fixes
* clean tests
* big clean
* fix flake8
* pylint fixes
* fix versioning and summary
* simplify
* sftp cert ests
* sftp connect tests
* organize tests
* support tilde
* clean logged out logs
* az sftp cert expiration
* az sftp cert argument combination tests
* parameterize some tests
* az sftp connect arg combos
* remove batch mode
* unit tests
* simplify
* update args and summary
* minor changes and add basic scenario tests
* style
* remove validators
* remove connectivity utils and client factory
* remove test-only functions
* remove unnecessary wrappers
* remove chmod
* remove batch commands example
* add sftp to service_name.json
* Add copyright header test_sftp_scenario.py
* Update azext_metadata.json
---------
Co-authored-by: Zhiyi Huang <[email protected]>
* [Release] Update index.json for extension [ sftp-1.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137326695&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3ff2094b2eb10d3d6cda59c138befe9e26e7bf46
* (playwrighttesting): Deprecation of playwright cli command (#9156)
Co-authored-by: guptakashish <[email protected]>
* Update firmwareanalysis to GA status (#9172)
- remove azext.isPreview configuration so docs reflect GA status instead
of Preview
- bump version to 2.0.1 so we can release the fix
Co-authored-by: Mike Kennedy (from Dev Box) <[email protected]>
* [Release] Update index.json for extension [ firmwareanalysis-2.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137347377&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2788cf10fb77bde67930b43f62c5454be80c4fe4
* chore: Disable aks-mcp by default, offer --aks-mcp flag to enable it (#9171)
* [Release] Update index.json for extension [ aks-agent-1.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137471450&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/acc900e7a53c3083ed343b75346268cb35a54f6b
* Add blue green upgrade support for aks-preview (#8999)
* Feature/aks acns performance (#9136)
* feat: add acns perf options
* feat: fix issues, add tests
* chore: update history
* Update src/aks-preview/azext_aks_preview/managed_cluster_decorator.py
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/azext_aks_preview/tests/latest/test_managed_cluster_decorator.py
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/linter_exclusions.yml
Co-authored-by: Copilot <[email protected]>
* Update src/aks-preview/linter_exclusions.yml
Co-authored-by: Copilot <[email protected]>
* fix: address comments
* fix: address comments
* fix: switch to westcentralus
* chore: update version
* fix: undo accidental delete
* chore: update acns perf test, add recording
* fix bad merge
---------
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b38 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137487000&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b06cbbb5beddcc2db1da8d464f20ea09be2fd0f0
* [connectedk8s] Update extension CLI to v1.10.9 (#9177)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* update release notes and version for connectedk8s cli extension (#18)
* remove redundant test files specific to forked repo CI checks
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.9 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137602188&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d4d58b120103cf002b568ed8dcc03085d6dd9bec
* [Communication] Add deliveryReport and Tag parameters to sms send command (#9180)
* Add deliveryReport and Tag parameters to sms send command
* correct version
* update version
* Fix tests
* Fix test and recordings
* Fix recordings
* [Release] Update index.json for extension [ communication-1.14.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137812299&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/3e96534a196cd4832ea84859874a34b255397da9
* [amlfs] Add az amlfs auto-import commands (#9134)
* [amlfs] Add az amlfs auto-import commands
* Updating History and setup files
* Update src/amlfs/azext_amlfs/aaz/latest/amlfs/auto_import/_update.py
Co-authored-by: Copilot <[email protected]>
(cherry picked from commit 3d1f1fc728de13efd194a5b2fa529d4f9633a07a)
* Updating create option conflict resolution for shorter length
* Adding re-recorded Import Job test
* Adding re-recorded AutoExportJob tests
* Adding re-recorded test results
---------
Co-authored-by: Aman Jain <[email protected]>
Co-authored-by: Copilot <[email protected]>
* Create role assignment for MSI when enable_vnet_integration is true (#9153)
* update error message
* grant vnet perm
* address comments
* setup.py
* update
* update style
* release version block
* update
* [Release] Update index.json for extension [ amlfs-1.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137812854&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/8357d6f854d23360cfe0dc5d94c2c616fea5bebb
* Managed Network Fabric - Removing the `externalnetwork update-bfd-administrative-state` command as it is not supported by the API. (#9182)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* removing unsupported operation
* removing unsupported operation
* Retrigger GitHub Actions
* [Release] Update index.json for extension [ managednetworkfabric-8.1.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137813062&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/1c1130586dde43a58feb173f23366c03cb5bc56a
* Update the layer hashes for image which has changed and pull specific sha (#9174)
* {CI} Sync resourceManagement.yml according To ADO Wiki Page - Service Contact List (#9197)
* Network Cloud Preview Version 4.0.0b1 for 2025-07-01-preview (#9057)
* new version of networkcloud cli
* updating min version
* pushing some updates
* fix run command for storage appliance on windows
* update history
---------
Co-authored-by: Nafiz Haider <[email protected]>
* [Release] Update index.json for extension [ networkcloud-4.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137934227&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2105ee9ce3a5d929eadc6168b773e9edaf4626e2
* [AKS] Add option AzureLinuxOSGuard and AzureLinux3OSGuard to --os-sku for az aks nodepool add and az aks nodepool update (#9147)
* [Release] Update index.json for extension [ aks-preview-18.0.0b39 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137942863&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ce952e4f70216f250df394de9923dfb27da0a181
* {Zones} Pin minCliCoreVersion 2.72.0 as the latest CLI version before this extension was released. Remove incompatibility with previous CLI core version. (#9200)
* [Release] Update index.json for extension [ zones-1.0.0b5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=137945712&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fe864e4ac75ea7a928a9bde0b4d925e97d7bfd04
* exclude tests folder (#9213)
* new release (#9218)
* [AKS] Add option Windows2025 to --os-sku for az aks nodepool add (#9178)
* arcdata version bump to 1.5.26 (#9148)
Co-authored-by: Melody Zhu <[email protected]>
* {AKS} Fix test case `test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id` (#9221)
* [AKS] Fix --aks-mcp flag to accept true/false values (#9231)
Simplified the aks-mcp parameter by removing custom positive/negative labels
and using the default three_state_flag behavior to properly handle true/false values.
* [AKS Agent] Bump aks-mcp version to v0.0.9 (#9236)
* [AKS Agent] Bump aks-mcp version to v0.0.9
* [AKS Agent] Bump aks-agent version to 1.0.0b4
* [Release] Update index.json for extension [ aks-agent-1.0.0b4 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138354998&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fa62bf336ebe4577b3fc7b0a61247f5ec0e931d3
* Managed Network Fabric - Adding nullable to all ARM-ID fields to allow clearing the values (#9216)
* updating nexusidentity - Resolves installation issue caused by Graphs Python SDK package where a long path error occured. To fix this - SDK support was removed and replaced with httpclient
* fixing a small security concern with shell
* retrigger checks
* retrigger checks
* removing unsupported operation
* removing unsupported operation
* Retrigger GitHub Actions
* Adding nullable to all ARM-ID fields
* Adding nullable to all ARM-ID fields
* fixing versioning
* {stream-analytics} Support with Azure Function (#9179)
* migrate to aaz, support with Azure Function
* remove cf, run live test
* update version
* [Release] Update index.json for extension [ managednetworkfabric-8.2.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138359475&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2453de18c687e700812af0fbebbef314df28411f
* [Release] Update index.json for extension [ stream-analytics-1.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138359965&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ef3c612878cb4f2be583449fe12578941952109e
* [confcom] Add tests for acipolicygen (#9199)
* Add tests for acipolicygen on arm template
* Add missing sha based references
* Remove helper script
* Add a test for fragments
* Skip test with known issue
* Skip exclude default fragment tests for known issue
* Update missed rego policies
* Fix the curdir of acipolicygen test runner
* [confcom] Bump the infra fragment minimum svn to 4 (#9238)
* Bump the infra fragment minimum svn to 4
* Bump version
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138363679&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/f4f6815128332be637ef1eaf6d9f27753ac785c8
* AKS: Change --enable-azure-container-storage --disable-azure-container -storage behavior and add --container-storage-version (#9138)
* [Release] Update index.json for extension [ aks-preview-18.0.0b40 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138547011&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/737b240c25351488f0c9ba79c9dfc886d083d52f
* AOSM CLI - Fixing a zip-slip security bug for code that was using tar.extractall() on `nfd build` command (#9234)
* AOSM CLI - Fixing a zip-slip security bug for code that was using tar.extractall() on `nfd build` command
* fixing tests
* fixing tests
* review updates
---------
Co-authored-by: Daniel Steven <[email protected]>
* [Release] Update index.json for extension [ aosm-2.0.0b3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138548638&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/966e8d89e58db94e98c6907a896cc58c7cbfd6fd
* Skip none overrides on localdns profile (#9188)
* Add JWT Authenticator commands to aks-preview (#9189)
* [ Workload-Orchestration ] Added Bulk Management Commands (#9246)
* Workload orchestration 3.1.0
* Update version
* Update version
* Adding example
* Adding example
* Removing pem files
* Updating api version
* Fixing tests
* Fixing tests
* Backward Compatible
---------
Co-authored-by: Atharva <[email protected]>
* [Release] Update index.json for extension [ workload-orchestration-4.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138573512&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d378651f9ff52200278ac797b9e245d179efad55
* Fix merge conflict between new tests and default min svn bump (#9241)
* Add NG of type subnet support (#9244)
* [Release] Update index.json for extension [ network-manager-3.0.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138664427&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/8e30da7574fee6e8695f7cbe1b2b10a7bab76940
* [connectedk8s] Update extension CLI to v1.10.10 (#9254)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* Parameterize for airgapped clouds (#5)
* Add parameterization for the airgapped clouds
* Fix azdev style
* MCR path function
* azdev, ruff, and mypy
---------
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
* Oras client fix to work with different MCRs (#6)
Co-authored-by: mmcneal <[email protected]>
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* Update cluster diagnostics image to 1.29.3 (#7)
* Update cluster diagnostics helm chart to 1.29.3
* Fix lint issues
---------
Co-authored-by: bgriddaluru <[email protected]>
* RBAC deprecation & fix the issue
* typo
* fix comments
* update tests
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* rebase
* fix tests
* fix version
* fix mypy, lint
* fix test
* fix test
* fix test
* fix test
* fix test
* rename test
* deprecate flags
* rebase
* rebase
* bump version for release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* remove redundant test files
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: Vineeth Thumma <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.10 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138674669&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/e03fa94b705e6ec9957f77b909845350d186b47a
* Evals system for aks-agent (#9219)
* fix: acns-datapath-acceleration-mode None should set the API field correctly (#9255)
* [Release] Update index.json for extension [ aks-preview-18.0.0b41 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138690044&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/961d5126fccf51bc8801600a00e85776e9b7cd2b
* Azure CLI to manage Site resources (#9181)
* Site cli extension changes
* removing beta
* Allowing labels deletion
* removing beta from version history
* Correcting argument
* Correcting format
* Updated readme
* Adding beta to version
* Updating service_name file with site entry
* [Release] Update index.json for extension [ site-1.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138696727&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/4a4e750e807ee47001be3bfa132d117931e66052
* Azure Firewall Autoscale Configuration (#9235)
* Azure Firewall Autoscale Configuration
* bump version
* update recordings for tests
* reset of recordings
* Try to fix recording for test_azure_firewall_policy_explicit_proxy
* non-dynamic test value
* Use sas token key
* Remove explicit proxy test
* [Release] Update index.json for extension [ azure-firewall-1.4.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=138818987&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b030b92555c22dbbaade2b867793b72e7aa14095
* Managed Network Fabric - Removing commands that are not supported by the API. (#9266)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* [Release] Update index.json for extension [ managednetworkfabric-8.2.1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139155356&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/59ba8a14aba85101d8e41c6c1a8789d4b65aed12
* [AKS] Add support for OSSKU Flatcar to cluster create/nodepool create (#9240)
* [storage-discovery] 09-01 stable cli extension (#9230)
mark operations stable
update setup.py and HISTORY.rst
remove azext.isPreview from azext_metadata.json
* {AKS} Fix role assignment failure when using azure-cli version >= `2.77.0`. (#9267)
* [Release] Update index.json for extension [ storage-discovery-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139171604&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/2ebf49eb7017ef71056316875e240c0c76a71cc6
* [Release] Update index.json for extension [ aks-preview-18.0.0b42 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139172224&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/af54e9d799ca3d4da6796ba46da47474bde7bf4e
* Add new parameter to enable Dnstap logging in Azure Firewall (#9271)
* Adding new parameter enable-dnstap-logging
* Small nit
* Small nit2
* Remove comma
* Update history
* update test recording
* Update setup
---------
Co-authored-by: Bhumika Kaur Matharu <[email protected]>
* [Release] Update index.json for extension [ azure-firewall-1.5.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139595971&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/05c62a2a4793c75960b2fda7aa920574522be3b4
* Add LocalDNS Live Tests for valid and invalid scenarios (#9252)
* skip none overrides on localdns profile
* update history rst
* refactor to process dns overrides func
* move overrides function to helper file
* apply linter suggestions
* add localdnsconfig folder
* add more tests
* add new json files
* add default dns overrides
* add more test cases
* move tests around, move invalid cases to another file
* add back import semver
* reorder the existing tests
* delete preferred mode only
* delete null.json
* remove redundant json file
* remove redundant json file
* fix the mistake at line 3349
* forgot that i put all the configs in data/localconfig folder
* remove unused file
* spelling error
* fix default dnsOverrides check when we create agentpool with required mode only
* restore localdnsconfig file
* delete extra property case from invalid test file
* add extra property cases in src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py
* add extra property files
* check for defaulted *dnsOverrides when making agent pool with mode: required only
* comment out cleanup in test_aks_nodepool_add_with_localdns_required_mode
* add more logging for debugging
* add print statements in src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py for debugging
* only initialize the dictionaries if dnsoverrides are provided
* process dns overrides only when dns overrides are provided
* consolidate duplicated build_localdns_profile function
* move invalid cases to line 4133
* update test_aks_commands.py
* look for vnetDnsOverrides and kubeDNSOverrides keys, case-insensitive
* fix test_aks_nodepool_add_with_localdns_required_mode_single_vnetdns
* check for dictionary for build_override
* update failing test cases
* rename from required_mode_extra_property.json -> required_mode_kubedns_extra_property.json
* fix azdev style
* temporarily add self.fail statements s.t. i can see the error_message
* change from assertTrue to assertIn with more specific error msg, delete un-needed test case
* change from print to debug
* remove logger.debug line to print localdnsprofile
* add null config file
* fix the tests
* fix the tests
* update src/aks-preview/HISTORY.rst with a new note under 18.0.0b42
* update src/aks-preview/HISTORY.rst
* Revert "add print statements in src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py for debugging"
This reverts commit b7474385a8bcb5088ea8539923a4eca5ab366ba3.
* update src/aks-preview/HISTORY.rst
* Revert "add more logging for debugging"
This reverts commit 1786254f78627af5926efa438163843de19657dd.
* mix the casing for *dnsoverrides
* throw an exception from cli if the values of kubednsoverrides or vnetdnsoverrides are not type dict
* add tests for null and non-dict overrides
* make the keys of localdnsprofile mixed-case
* add required_mode_null_dnsOverrides.json and required_mode_number_dnsOverrides.json
* correct the error message I'm looking for, for non-dict dns overrides
* remove print stmt from src/aks-preview/azext_aks_preview/_helpers.py
* add check for DNS override settings
* update the test with dns override settings check
* update assertIn msg for test_aks_nodepool_add_with_localdns_required_mode_partial_invalid
* break down InvalidArgumentValueError msg into two lines
* update existing cassette files
* new cassette files for new tests
* add three additional cassette files I did not commit before
* expect InvalidArgumentValueError when None is provided for DNS overrides
* update AKSPreviewAgentPoolUpdateDecoratorCommonTestCase.common_update_localdns_profile
* revert the import statement for from azure.cli.command_modules.acs.tests.latest.mocks import
* Add a new line
* Revert "Add a new line"
This reverts commit 2c347c3c6d5afed2bd36aa32818f1dfdbae9a44e.
* update version in src/aks-preview/setup.py to align with azure-cli-extensions/src/aks-preview/HISTORY.rst
---------
Co-authored-by: juanbe <[email protected]>
Co-authored-by: Juan Diego Bencardino <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b43 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139618131&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/ba0a97c85caacd81d7863a190f1d1f68215d142c
* [Network] Feature network NSP 2024 10 01 (#9101)
* Add changes related 2024-10-01
* Update changelog
* Update tests
* Updated tests
* updated tests recordings
* Update test recordings
* [Release] Update index.json for extension [ nsp-1.1.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139724051&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/4790cd2e5819a8d739982c378af223756c0fa0ec
* Bump fleet az cli extension version to 1.7.0 (#9277)
* bump to 1.6.5
* update the version to 1.7.0
* [Release] Update index.json for extension [ fleet-1.7.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139749279&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/75972f4473c184b540e9514bfd8cddaa2104f1ae
* {AKS} Vendor new SDK and bump API version to 2025-08-02-preview (#9276)
* {redisenterprise} breaking change warning (#9272)
* breaking change warning
* Update src/redisenterprise/_breaking_change.py
Co-authored-by: Copilot <[email protected]>
* style fix
* update version
---------
Co-authored-by: Nikita Garg <[email protected]>
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ redisenterprise-1.2.2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139758024&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/cfa24a9086847c85fb737b625c9e50546b8c29b3
* Added SQL DB Retry, SQLVM Delete and SQLMI Delete commands (#9256)
* Added SQL DB Retry, SQLVM Delete and SQLMI Delete commands
* Updates.
* Updates
---------
Co-authored-by: Amarjeet Kumar <[email protected]>
* [Release] Update index.json for extension [ datamigration-1.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=139765686&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/19559b67b7f99bec3a057327a4483f90059e9729
* {Containerapp} Update recording files (#9281)
* hide the --enable-managed-system-pool option for now (#9278)
* hide the --enable-managed-system-pool optoin for now
* add history
* keep _help.py
* fix style
* update setup.py
---------
Co-authored-by: Hao Yuan <[email protected]>
* [Release] Update index.json for extension [ aks-preview-18.0.0b44 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140008104&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/bfb734ec564d1cfaa7b94216ea34a20fd78a9050
* Network Cloud CLi - Fixing zip-slip vulnerability in custom operations (#9282)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* Network Cloud CLi - Fixing zip-slip vulnerability
* updating history and setup.py versions
* linting fixes
* [Release] Update index.json for extension [ networkcloud-4.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140083779&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/aff3034796db390283b7556306fc1c5847d0700d
* [confcom] Add a warning and path for default change for stdio (#9203)
* Add a warning and path for default change for stdio
* Satisfy azdev style
* Fix help string for --enable-stdio
* Refactor resolving stdio into it's own function
* Bump version
* Bump minor version
* [Release] Update index.json for extension [ confcom ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140089922&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/de110edc4faa6464bfa82fe8dc64f46c34ad1d77
* Stumpaudra/fleet/managed namespace (#9035)
* base recalibration
update
update
update
update
update
update
removing 0401
got tests to work
update
pylint
update
pylint
update
adding get credential commansd
update
pylint
addressing comments
simplifying namespace
updates
updates
lint
style
pylint
updates
updates to member
updates
updates
updates
style
updates
update
update
updated test recordings
removing unwanted files
updates
updating metadata
linter
updating version/history
setup
updates
style
style
update style
flake8
remove preview
making hubful recording use global endpoint
squash-managednamespace implementation
* changing defaults, updating help message
* updates
* adding validation none check
* updates
* version
---------
Co-authored-by: audrastump <[email protected]>
Co-authored-by: Jim Minter <[email protected]>
* [Release] Update index.json for extension [ fleet-1.8.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140092040&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/b980420e190b0e3d2ea39605c9c886372b33c4c1
* [AKS] `az aks update`: Add new parameter `--kms-infrastructure-encryption` to enable KMS infrastructure encryption on an existing cluster. (#9287)
* Used vendored application insight sdk (#9184)
* vendor SDK
* Update SDK reference
* Fix test
* [Release] Update index.json for extension [ spring-1.28.5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140102657&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/60bc46cafbca3c684431a741acafe1161cd4416c
* [redisenterprise] update breaking change file loc (#9294)
* update file loc
* update version
* style fix
* style fix
---------
Co-authored-by: Nikita Garg <[email protected]>
* [Release] Update index.json for extension [ redisenterprise-1.2.3 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140114066&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/351dba70de70d6d32c6ddb414ad6bdfa1549ad70
* Network Cloud CLI version 2025-09-01 GA (#9295)
* Removing unsupported commands from the managednetworkfabric CLI.
* updating history
* Network Cloud CLi - Fixing zip-slip vulnerability
* updating history and setup.py versions
* linting fixes
* Netowrk Cloud CLI version 2025-09-01 GA
* [Release] Update index.json for extension [ networkcloud-4.0.0 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140209385&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/c239b89d4477e91c26d4a41c9d716dcbe762432b
* {Containerapp} Update test and recording files (#9291)
* update (#9297)
* [Release] Update index.json for extension [ containerapp ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140238524&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/26143775307ca13b9b86a530ed0cc3f27f789ea9
* [connectedmachine] update get extension image command (#9187)
* release 24-11
* update tests
* update version
* fix version number
* fix style
* fix style issue
* update tests
* update tests
* update tests
* update tests
* update tests
* upate test
* update test
* update test
* update test
* update commands
* update
* Update src/connectedmachine/azext_connectedmachine/aaz/latest/connectedmachine/extension/image/_show.py
Co-authored-by: Copilot <[email protected]>
* Update src/connectedmachine/azext_connectedmachine/aaz/latest/connectedmachine/extension/image/_list.py
Co-authored-by: Copilot <[email protected]>
* update tests
* update
* update test
* update
* update
---------
Co-authored-by: Copilot <[email protected]>
* [Release] Update index.json for extension [ connectedmachine-2.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140341424&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/a9b5e3cd0f474731252d2e171f5fa027b7d7f600
* feat: remove --enable-custom-ca-trust and --disable-custom-ca-trust options (#9283)
* [Release] Update index.json for extension [ aks-preview-19.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140361299&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/89bbdac512889150b71f005451f22a53d1ab330a
* add index (#9299)
* [servicelinkerpasswordless] fix logging issue (#9300)
* [Release] Update index.json for extension [ serviceconnector-passwordless-3.3.6 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140371627&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/695ae6076fd9aaa53012d5d62b3dbff044d75ba6
* Update link in azcli_aks_live_test README (#9247)
* updated the api version to 2025-06-01 (#9296)
Co-authored-by: Ravindra Dongade <[email protected]>
* initial checking for 2025-07-15 stable CLI (#9269)
* [Release] Update index.json for extension [ managednetworkfabric-9.0.0b1 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140490277&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/fe7ebde6039cb517af4224dc18916a3c389d916c
* [connectedk8s] Update extension CLI to v1.10.11 (#9304)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update python version to 3.13 (#12)
* changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17)
* [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20)
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* Parameterize for airgapped clouds (#5)
* Add parameterization for the airgapped clouds
* Fix azdev style
* MCR path function
* azdev, ruff, and mypy
---------
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
* Oras client fix to work with different MCRs (#6)
Co-authored-by: mmcneal <[email protected]>
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* Update cluster diagnostics image to 1.29.3 (#7)
* Update cluster diagnostics helm chart to 1.29.3
* Fix lint issues
---------
Co-authored-by: bgriddaluru <[email protected]>
* RBAC deprecation & fix the issue
* typo
* fix comments
* update tests
* add pester tests for connectedk8s cli extension
* Pass the force delete param to the API call (#4)
* forcedelete
* format
* add code owner
* mypy
* fix CI testcases for nodepool image issues (#8)
* update errors for the config and connectivity issues (#11)
* update errors
* format
* style
* update python version to 3.13 (#12)
* rebase
* fix tests
* fix version
* fix mypy, lint
* fix test
* fix test
* fix test
* fix test
* fix test
* rename test
* deprecate flags
* rebase
* rebase
* bump version for release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
* remove hardcoded public ARM endpoint url for fairfax and mooncake (#24)
* Bug Fix for FFX mcr url (#22)
* [connectedk8s] update release notes and version (#26)
* remove redundant test files
* remove change not relevant to connectedk8s release
---------
Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Atchut Kumar Barli <[email protected]>
Co-authored-by: Vineeth Thumma <[email protected]>
Co-authored-by: mcnealm13 <[email protected]>
Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: bgriddaluru <[email protected]>
Co-authored-by: vithumma <[email protected]>
Co-authored-by: hapate <[email protected]>
* [Release] Update index.json for extension [ connectedk8s-1.10.11 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140504087&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/425351566b46b9adca5cbf821b6f526fc572004b
* [AKS] Add --enable-opentelemetry-metrics and --enable-opentelemetry-logs to monitoring addons in aks-preview (#9149)
* [Release] Update index.json for extension [ aks-preview-19.0.0b2 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140506301&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/d2beb32eaae782455245a986bc6ce59aaffcd213
* {AKS} Bump holmesgpt and add feedback slash command (#9261)
* [Release] Update index.json for extension [ aks-agent-1.0.0b5 ]
Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/msazure/One/_build/results?buildId=140510943&view=results
Last commit: https://github.com/Azure/azure-cli-extensions/commit/07cf2351f42a9c1e86e91c4f4b2b5f6278cca311
* Fix doc link to dmverity-vhd tool (#9068)
Moved to
- https://github.com/microsoft/integrity-vhd
Removal in original location in
- https://github.com/microsoft/hcsshim/pull/2318
* [confcom] Fix multiple issues with `acipolicygen --diff` (#9258)
* Only attempt to parse ccePolicy if --diff is specified
* Fix parsing ccePolicies with no container defintions
* Satisfy azdev style
* Fix --infrastructure-svn and --fragments-json combo (#9264)
* [AKS] Implement platform-managed-keys (PMK) awared validation for KMS customer-managed-key (CMK) (#9301)
* [Release] Update index.json for extension [ aks-preview-19.0.0b3 ]
Triggered by Az…
* add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (Azure#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (Azure#8) * update python version to 3.13 (Azure#12) * changes to support gateway association/disassociation for api version '2025-08-01-preview' (Azure#17) * [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (Azure#20) * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (Azure#4) * forcedelete * format * add code owner * mypy * Parameterize for airgapped clouds (Azure#5) * Add parameterization for the airgapped clouds * Fix azdev style * MCR path function * azdev, ruff, and mypy --------- Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> * Oras client fix to work with different MCRs (Azure#6) Co-authored-by: mmcneal <[email protected]> * fix CI testcases for nodepool image issues (Azure#8) * update errors for the config and connectivity issues (Azure#11) * update errors * format * style * update python version to 3.13 (Azure#12) * Update cluster diagnostics image to 1.29.3 (Azure#7) * Update cluster diagnostics helm chart to 1.29.3 * Fix lint issues --------- Co-authored-by: bgriddaluru <[email protected]> * RBAC deprecation & fix the issue * typo * fix comments * update tests * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (Azure#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (Azure#8) * update errors for the config and connectivity issues (Azure#11) * update errors * format * style * update python version to 3.13 (Azure#12) * rebase * fix tests * fix version * fix mypy, lint * fix test * fix test * fix test * fix test * fix test * rename test * deprecate flags * rebase * rebase * bump version for release --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> * remove hardcoded public ARM endpoint url for fairfax and mooncake (Azure#24) * Bug Fix for FFX mcr url (Azure#22) * [connectedk8s] update release notes and version (Azure#26) * remove redundant test files * remove change not relevant to connectedk8s release --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: Vineeth Thumma <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> Co-authored-by: hapate <[email protected]>
* add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update python version to 3.13 (#12) * changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17) * [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20) * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * Parameterize for airgapped clouds (#5) * Add parameterization for the airgapped clouds * Fix azdev style * MCR path function * azdev, ruff, and mypy --------- Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> * Oras client fix to work with different MCRs (#6) Co-authored-by: mmcneal <[email protected]> * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * Update cluster diagnostics image to 1.29.3 (#7) * Update cluster diagnostics helm chart to 1.29.3 * Fix lint issues --------- Co-authored-by: bgriddaluru <[email protected]> * RBAC deprecation & fix the issue * typo * fix comments * update tests * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * rebase * fix tests * fix version * fix mypy, lint * fix test * fix test * fix test * fix test * fix test * rename test * deprecate flags * rebase * rebase * bump version for release --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> * remove hardcoded public ARM endpoint url for fairfax and mooncake (#24) * Bug Fix for FFX mcr url (#22) * [connectedk8s] update release notes and version (#26) * Add Helm Overrides for AGC (#23) * add agc overrides * update gns endpoint * add indentation * fix linter error * fix ruff formatting * move overrides to it's own method * update method * update ruff formatting * [Azure RBAC] Remove deprecated flags (#16) * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * Parameterize for airgapped clouds (#5) * Add parameterization for the airgapped clouds * Fix azdev style * MCR path function * azdev, ruff, and mypy --------- Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> * Oras client fix to work with different MCRs (#6) Co-authored-by: mmcneal <[email protected]> * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * Update cluster diagnostics image to 1.29.3 (#7) * Update cluster diagnostics helm chart to 1.29.3 * Fix lint issues --------- Co-authored-by: bgriddaluru <[email protected]> * RBAC deprecation & fix the issue * typo * fix comments * update tests * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * rebase * fix tests * fix version * fix mypy, lint * fix test * fix test * fix test * fix test * fix test * rename test * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update python version to 3.13 (#12) * changes to support gateway association/disassociation for api version '2025-08-01-preview' (#17) * [Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, add E2E coverage and improve logging (#20) * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * Parameterize for airgapped clouds (#5) * Add parameterization for the airgapped clouds * Fix azdev style * MCR path function * azdev, ruff, and mypy --------- Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> * Oras client fix to work with different MCRs (#6) Co-authored-by: mmcneal <[email protected]> * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * Update cluster diagnostics image to 1.29.3 (#7) * Update cluster diagnostics helm chart to 1.29.3 * Fix lint issues --------- Co-authored-by: bgriddaluru <[email protected]> * RBAC deprecation & fix the issue * typo * fix comments * update tests * add pester tests for connectedk8s cli extension * Pass the force delete param to the API call (#4) * forcedelete * format * add code owner * mypy * fix CI testcases for nodepool image issues (#8) * update errors for the config and connectivity issues (#11) * update errors * format * style * update python version to 3.13 (#12) * rebase * fix tests * fix version * fix mypy, lint * fix test * fix test * fix test * fix test * fix test * rename test * deprecate flags * rebase * rebase * bump version for release --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> * remove breaking change announcement for removed flags --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Atchut Kumar Barli <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> * update prediag version (#27) * Updating the proxy version constant (#28) * Update relesae notes * dropping 3.9 * dropping testing folder * fixed code review comments * updateversion * Update src/connectedk8s/HISTORY.rst Co-authored-by: Xing Zhou <[email protected]> --------- Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Bavneet Singh <[email protected]> Co-authored-by: Vineeth Thumma <[email protected]> Co-authored-by: mcnealm13 <[email protected]> Co-authored-by: Matthew McNeal (from Dev Box) <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: bgriddaluru <[email protected]> Co-authored-by: vithumma <[email protected]> Co-authored-by: hapate <[email protected]> Co-authored-by: junw98 <[email protected]> Co-authored-by: gabemousa <[email protected]> Co-authored-by: Xing Zhou <[email protected]>
@derekbekoe , @coscor-ms please review