Skip to content

update cli with artifact streaming commands#33257

Draft
mxj220 wants to merge 2 commits intoAzure:devfrom
mxj220:markibrahim/artifact-streaming-ga-cli
Draft

update cli with artifact streaming commands#33257
mxj220 wants to merge 2 commits intoAzure:devfrom
mxj220:markibrahim/artifact-streaming-ga-cli

Conversation

@mxj220
Copy link
Copy Markdown
Contributor

@mxj220 mxj220 commented Apr 23, 2026

Related command

Description

Testing Guide

History Notes

[Component Name 1] BREAKING CHANGE: az command a: Make some customer-facing breaking change
[Component Name 2] az command b: Add some customer-facing feature


This checklist is used to make sure that common guidelines for a pull request are followed.

@azure-client-tools-bot-prd
Copy link
Copy Markdown

azure-client-tools-bot-prd Bot commented Apr 23, 2026

❌AzureCLI-FullTest
️✔️acr
️✔️latest
️✔️3.12
️✔️3.13
❌acs
❌latest
❌3.12
Type Test Case Error Message Line
Failed test_get_enable_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolContextStandaloneModeTestCase testMethod=test_get_enable_artifact_streaming>

    def test_get_enable_artifact_streaming(self):
>       self.common_get_enable_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:1994: 
                                        

self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolContextStandaloneModeTestCase testMethod=test_get_enable_artifact_streaming>

    def common_get_enable_artifact_streaming(self):
        # default
        ctx_1 = AKSAgentPoolContext(
            self.cmd,
            AKSAgentPoolParamDict({"enable_artifact_streaming": None}),
            self.models,
            DecoratorMode.CREATE,
            self.agentpool_decorator_mode,
        )
        self.assertEqual(ctx_1.get_enable_artifact_streaming(), None)
        agentpool_1 = self.create_initialized_agentpool_instance(
>           artifact_streaming_profile=self.models.AgentPoolArtifactStreamingProfile(
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                enabled=True
            )
        )
E       AttributeError: 'AKSAgentPoolModels' object has no attribute 'AgentPoolArtifactStreamingProfile'

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:1366: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:1992
Failed test_get_enable_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolContextManagedClusterModeTestCase testMethod=test_get_enable_artifact_streaming>

    def test_get_enable_artifact_streaming(self):
>       self.common_get_enable_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2193: 
                                        

self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolContextManagedClusterModeTestCase testMethod=test_get_enable_artifact_streaming>

    def common_get_enable_artifact_streaming(self):
        # default
        ctx_1 = AKSAgentPoolContext(
            self.cmd,
            AKSAgentPoolParamDict({"enable_artifact_streaming": None}),
            self.models,
            DecoratorMode.CREATE,
            self.agentpool_decorator_mode,
        )
        self.assertEqual(ctx_1.get_enable_artifact_streaming(), None)
        agentpool_1 = self.create_initialized_agentpool_instance(
>           artifact_streaming_profile=self.models.AgentPoolArtifactStreamingProfile(
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                enabled=True
            )
        )
E       AttributeError: 'AKSAgentPoolModels' object has no attribute 'AgentPoolArtifactStreamingProfile'

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:1366: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2191
Failed test_construct_agentpool_profile_default self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolAddDecoratorStandaloneModeTestCase testMethod=test_construct_agentpool_profile_default>

    def test_construct_agentpool_profile_default(self):
        import inspect
    
        from azure.cli.command_modules.acs.custom import aks_agentpool_add
    
        optional_params = {}
        positional_params = []
        for , v in inspect.signature(aks_agentpool_add).parameters.items():
            if v.default != v.empty:
                optional_params[v.name] = v.default
            else:
                positional_params.append(v.name)
        ground_truth_positional_params = [
            "cmd",
            "client",
            "resource_group_name",
            "cluster_name",
            "nodepool_name",
        ]
        self.assertEqual(positional_params, ground_truth_positional_params)
    
        # prepare a dictionary of default parameters
        raw_param_dict = {
            "resource_group_name": "test_rg_name",
            "cluster_name": "test_cluster_name",
            "nodepool_name": "test_nodepool_name",
        }
        raw_param_dict.update(optional_params)
    
        # default value in aks&nbsp;nodepool&nbsp;add
        dec_1 = AKSAgentPoolAddDecorator(
            self.cmd,
            self.client,
            raw_param_dict,
            self.resource_type,
            self.agentpool_decorator_mode,
        )
    
        with patch(
            "azure.cli.command_modules.acs.agentpool_decorator.cf_agent_pools",
            return_value=Mock(list=Mock(return_value=[])),
        ):
>           dec_agentpool_1 = dec_1.construct_agentpool_profile_default()
                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2949: 
                                        
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2344: in construct_agentpool_profile_default
    agentpool = self.set_up_artifact_streaming(agentpool)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2228: in set_up_artifact_streaming
    if self.context.get_enable_artifact_streaming():
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:1368: in get_enable_artifact_streaming
    self.agentpool.artifact_streaming_profile is not None and
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                       _ 

self = {'name': 'test_nodepool_name', 'properties': {'vmSize': '', 'osType': 'Linux', 'enableNodePublicIP': False, 'count': 3...ableEncryptionAtHost': False, 'enableUltraSSD': False, 'enableFIPS': False, 'mode': 'User', 'scaleDownMode': 'Delete'}}
name = 'artifact_streaming_profile'

    def getattr(self, name: str) -> Any:
        if name in self.__flattened_items:
            if self.properties is None:
                return None
            return getattr(self.properties, name)
>       raise AttributeError(f"'{self.class.name}' object has no attribute '{name}'")
E       AttributeError: 'AgentPool' object has no attribute 'artifact_streaming_profile'

env/lib/python3.12/site-packages/azure/mgmt/containerservice/models/_models.py:457: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2906
Failed test_set_up_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolAddDecoratorStandaloneModeTestCase testMethod=test_set_up_artifact_streaming>

    def test_set_up_artifact_streaming(self):
>       self.common_set_up_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2902: 
                                        
src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2757: in common_set_up_artifact_streaming
    dec_agentpool_1 = dec_1.set_up_artifact_streaming(agentpool_1)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2228: in set_up_artifact_streaming
    if self.context.get_enable_artifact_streaming():
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:1368: in get_enable_artifact_streaming
    self.agentpool.artifact_streaming_profile is not None and
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                        

self = {'name': 'nodepool1'}, name = 'artifact_streaming_profile'

    def getattr(self, name: str) -> Any:
        if name in self.__flattened_items:
            if self.properties is None:
                return None
            return getattr(self.properties, name)
>       raise AttributeError(f"'{self.class.name}' object has no attribute '{name}'")
E       AttributeError: 'AgentPool' object has no attribute 'artifact_streaming_profile'

env/lib/python3.12/site-packages/azure/mgmt/containerservice/models/_models.py:457: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2900
Failed test_construct_agentpool_profile_default self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolAddDecoratorManagedClusterModeTestCase testMethod=test_construct_agentpool_profile_default>

    def test_construct_agentpool_profile_default(self):
        import inspect
    
        from azure.cli.command_modules.acs.custom import aks_create
    
        optional_params = {}
        positional_params = []
        for , v in inspect.signature(aks_create).parameters.items():
            if v.default != v.empty:
                optional_params[v.name] = v.default
            else:
                positional_params.append(v.name)
        ground_truth_positional_params = [
            "cmd",
            "client",
            "resource_group_name",
            "name",
            "ssh_key_value",
        ]
        self.assertEqual(positional_params, ground_truth_positional_params)
    
        # prepare a dictionary of default parameters
        raw_param_dict = {
            "resource_group_name": "test_rg_name",
            "name": "test_cluster_name",
            "ssh_key_value": None,
        }
        raw_param_dict.update(optional_params)
    
        # default value in aks_create
        dec_1 = AKSAgentPoolAddDecorator(
            self.cmd,
            self.client,
            raw_param_dict,
            self.resource_type,
            self.agentpool_decorator_mode,
        )
    
        with patch(
            "azure.cli.command_modules.acs.agentpool_decorator.cf_agent_pools",
            return_value=Mock(list=Mock(return_value=[])),
        ):
>           dec_agentpool_1 = dec_1.construct_agentpool_profile_default()
                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3109: 
                                        
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2344: in construct_agentpool_profile_default
    agentpool = self.set_up_artifact_streaming(agentpool)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2228: in set_up_artifact_streaming
    if self.context.get_enable_artifact_streaming():
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                       _ 

self = <azure.cli.command_modules.acs.agentpool_decorator.AKSAgentPoolContext object at 0x7f892c32d6a0>

    def get_enable_artifact_streaming(self) -> bool:
        """Obtain the value of enable_artifact_streaming.
    
        :return: bool
        """
        # read the original value passed by the command
        enable_artifact_streaming = self.raw_param.get("enable_artifact_streaming")
        # In create mode, try to read the property value corresponding to the parameter from the agentpool object
        if self.decorator_mode == DecoratorMode.CREATE:
            if (
                self.agentpool and
>               self.agentpool.artifact_streaming_profile is not None and
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                self.agentpool.artifact_streaming_profile.enabled is not None
            ):
E           AttributeError: 'ManagedClusterAgentPoolProfile' object has no attribute 'artifact_streaming_profile'

src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:1368: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3066
Failed test_update_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolUpdateDecoratorStandaloneModeTestCase testMethod=test_update_artifact_streaming>

    def test_update_artifact_streaming(self):
>       self.common_update_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3676: 
                                        
src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3388: in common_update_artifact_streaming
    dec_agentpool_1 = dec_1.update_artifact_streaming(agentpool_1)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2692: in update_artifact_streaming
    if agentpool.artifact_streaming_profile is None:
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                        

self = {'name': 'nodepool1'}, name = 'artifact_streaming_profile'

    def getattr(self, name: str) -> Any:
        if name in self.__flattened_items:
            if self.properties is None:
                return None
            return getattr(self.properties, name)
>       raise AttributeError(f"'{self.class.name}' object has no attribute '{name}'")
E       AttributeError: 'AgentPool' object has no attribute 'artifact_streaming_profile'

env/lib/python3.12/site-packages/azure/mgmt/containerservice/models/_models.py:457: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3674
Failed test_update_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolUpdateDecoratorManagedClusterModeTestCase testMethod=test_update_artifact_streaming>

    def test_update_artifact_streaming(self):
>       self.common_update_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3807: 
                                        
src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3388: in common_update_artifact_streaming
    dec_agentpool_1 = dec_1.update_artifact_streaming(agentpool_1)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                        

self = <azure.cli.command_modules.acs.agentpool_decorator.AKSAgentPoolUpdateDecorator object at 0x7f892c389a30>
agentpool = {'name': 'nodepool1'}

    def update_artifact_streaming(self, agentpool: AgentPool) -> AgentPool:
        """Update artifact streaming for the AgentPool object.
    
        :return: the AgentPool object
        """
        self._ensure_agentpool(agentpool)
    
        if self.context.get_enable_artifact_streaming():
>           if agentpool.artifact_streaming_profile is None:
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E           AttributeError: 'ManagedClusterAgentPoolProfile' object has no attribute 'artifact_streaming_profile'

src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2692: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3805
Failed test_aks_abort self = <azure.cli.testsdk.base.ExecutionResult object at 0x7f892c2f17f0>
cli_ctx = <azure.cli.core.mock.DummyCli object at 0x7f892ec45d60>
command = 'aks create --resource-group=clitest000001 --name=cliakstest000002 --ssh-key-value=/tmp/tmptpp9pkac --no-wait'
expect_failure = False

    def in_process_execute(self, cli_ctx, command, expect_failure=False):
        from io import StringIO
        from vcr.errors import CannotOverwriteExistingCassetteException
    
        if command.startswith('az '):
            command = command[3:]
    
        stdout_buf = StringIO()
        logging_buf = StringIO()
        try:
            # issue: stderr cannot be redirect in this form, as a result some failure information
            # is lost when command fails.
>           self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/azure-cli-testsdk/azure/cli/testsdk/base.py:303: 
                                        
env/lib/python3.12/site-packages/knack/cli.py:245: in invoke
    exit_code = self.exception_handler(ex)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/init.py:157: in exception_handler
    return handle_exception(ex)
           ^^^^^^^^^^^^^^^^^^^^
                                        

ex = AttributeError("'ManagedClusterAgentPoolProfile' object has no attribute 'artifact_streaming_profile'")
args = (), kwargs = {}

    def handle_main_exception(ex, *args, **kwargs):  # pylint: disable=unused-argument
        if isinstance(ex, CannotOverwriteExistingCassetteException):
            # This exception usually caused by a no match HTTP request. This is a product error
            # that is caused by change of SDK invocation.
            raise ex
    
>       raise CliExecutionError(ex)
E       azure.cli.testsdk.exceptions.CliExecutionError: The CLI throws exception AttributeError during execution and fails the command.

src/azure-cli-testsdk/azure/cli/testsdk/patches.py:35: CliExecutionError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.acs.tests.latest.test_aks_commands.AzureKubernetesServiceScenarioTest testMethod=test_aks_abort>
resource_group = 'clitest000001', resource_group_location = 'westus2'

    @AllowLargeResponse()
    @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2')
    def test_aks_abort(self, resource_group, resource_group_location):
        aks_name = self.create_random_name('cliakstest', 16)
        self.kwargs.update({
            'resource_group': resource_group,
            'name': aks_name,
            'ssh_key_value': self.generate_ssh_keys(),
        })
    
        create_cmd = 'aks create --resource-group={resource_group} --name={name} --ssh-key-value={ssh_key_value} --no-wait'
>       self.cmd(create_cmd)

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6413: 
 
                                       
src/azure-cli-testsdk/azure/cli/testsdk/base.py:177: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-testsdk/azure/cli/testsdk/base.py:252: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:315: in in_process_execute
    raise ex.exception
env/lib/python3.12/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/commands/init.py:677: in execute
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:820: in run_jobs_serially
    results.append(self.run_job(expanded_arg, cmd_copy))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/commands/init.py:789: in run_job
    result = cmd_copy(params)
             ^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/commands/init.py:335: in call
    return self.handler(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/commands/command_operation.py:120: in handler
    return op(**command_args)
           ^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/custom.py:1067: in aks_create
    mc = aks_create_decorator.construct_mc_profile_default()
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py:7534: in construct_mc_profile_default
    mc = self.set_up_agentpool_profile(mc)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py:6281: in set_up_agentpool_profile
    agentpool_profile = self.agentpool_decorator.construct_agentpool_profile_default()
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2344: in construct_agentpool_profile_default
    agentpool = self.set_up_artifact_streaming(agentpool)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2228: in set_up_artifact_streaming
    if self.context.get_enable_artifact_streaming():
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 
 
 
                                   _ 

self = <azure.cli.command_modules.acs.agentpool_decorator.AKSAgentPoolContext object at 0x7f892c32c9e0>

    def get_enable_artifact_streaming(self) -> bool:
        """Obtain the value of enable_artifact_streaming.
    
        :return: bool
        """
        # read the original value passed by the command
        enable_artifact_streaming = self.raw_param.get("enable_artifact_streaming")
        # In create mode, try to read the property value corresponding to the parameter from the agentpool object
        if self.decorator_mode == DecoratorMode.CREATE:
            if (
                self.agentpool and
>               self.agentpool.artifact_streaming_profile is not None and
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                self.agentpool.artifact_streaming_profile.enabled is not None
            ):
E           AttributeError: 'ManagedClusterAgentPoolProfile' object has no attribute 'artifact_streaming_profile'

src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:1368: AttributeError
azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6401
Failed test_aks_and_agentpool_with_static_egress_gateway The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14533
Failed test_aks_api_server_authorized_ip_ranges The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:565
Failed test_aks_approuting_enable_disable The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12024
Failed test_aks_approuting_enable_with_internal_nginx_then_disable The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12086
Failed test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12134
Failed test_aks_approuting_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12200
Failed test_aks_approuting_zone_add_delete_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12388
Failed test_aks_approuting_zone_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12510
Failed test_aks_availability_zones_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5968
Failed test_aks_azure_cni_overlay_migration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9732
Failed test_aks_azure_service_mesh_canary_upgrade The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2640
Failed test_aks_azure_service_mesh_enable_disable The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2269
Failed test_aks_azure_service_mesh_get_upgrades The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2831
Failed test_aks_azure_service_mesh_with_ingress_gateway The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2586
Failed test_aks_azure_service_mesh_with_pluginca The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2759
Failed test_aks_browse The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6881
Failed test_aks_cluster_kata The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3094
Failed test_aks_control_plane_user_assigned_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4219
Failed test_aks_create_add_nodepool_with_custom_ca_trust_certificates The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14119
Failed test_aks_create_add_nodepool_with_motd The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14079
Failed test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8448
Failed test_aks_create_again_should_fail The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10951
Failed test_aks_create_and_update_ipv6_count The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10754
Failed test_aks_create_and_update_with_blob_csi_driver The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8682
Failed test_aks_create_and_update_with_csi_drivers_extensibility The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8549
Failed test_aks_create_and_update_with_managed_nat_gateway_outbound The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:1161
Failed test_aks_create_and_update_with_nrg_restriction_level The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9611
Failed test_aks_create_autoscaler_then_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6929
Failed test_aks_create_blb_vmas_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4876
Failed test_aks_create_default The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:277
Failed test_aks_create_default_service_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4513
Failed test_aks_create_default_service_with_skip_role_assignment_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4761
Failed test_aks_create_default_setting_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4945
Failed test_aks_create_disable_rbac The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8020
Failed test_aks_create_dualstack_with_default_network The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10683
Failed test_aks_create_edge_zone The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9683
Failed test_aks_create_enable_azure_rbac The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7997
Failed test_aks_create_enable_encryption The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7975
Failed test_aks_create_gpu_driver_flow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14455
Failed test_aks_create_loadbalancer_then_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7510
Failed test_aks_create_network_cidr The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7589
Failed test_aks_create_no_ssh_key The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:231
Failed test_aks_create_node_provisioning_profile The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14897
Failed test_aks_create_node_public_ip The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7554
Failed test_aks_create_node_resource_group The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10091
Failed test_aks_create_nonaad_and_update_with_managed_aad The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3417
Failed test_aks_create_nonaad_and_update_with_managed_aad_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6165
Failed test_aks_create_scale_with_custom_nodepool_name_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4674
Failed test_aks_create_service_no_wait_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4605
Failed test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5031
Failed test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5227
Failed test_aks_create_slb_vmss_with_outbound_ip_then_update_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5126
Failed test_aks_create_spot_node_pool The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3577
Failed test_aks_create_spot_node_pool_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6273
Failed test_aks_create_update_fips_flow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2970
Failed test_aks_create_update_secure_boot_flow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13137
Failed test_aks_create_update_vtpm_flow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13221
Failed test_aks_create_with_acns_perf The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13397
Failed test_aks_create_with_acns_transit_encryption The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13933
Failed test_aks_create_with_advanced_networkpolicies The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13711
Failed test_aks_create_with_apiserver_vnet_integration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10517
Failed test_aks_create_with_apiserver_vnet_integration_public The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10565
Failed test_aks_create_with_app_routing_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11904
Failed test_aks_create_with_app_routing_enabled_and_nginx_specified The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11940
Failed test_aks_create_with_app_routing_enabled_and_nginx_specified_abbrv The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11982
Failed test_aks_create_with_auto_upgrade_channel The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6624
Failed test_aks_create_with_auto_upgrade_channel_and_node_os_upgrade_channel The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6720
Failed test_aks_create_with_azurekeyvaultsecretsprovider_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8420
Failed test_aks_create_with_confcom_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6421
Failed test_aks_create_with_confcom_addon_helper_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6440
Failed test_aks_create_with_crg_id The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11718
Failed test_aks_create_with_enable_acns The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13351
Failed test_aks_create_with_enable_acns_complex The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13516
Failed test_aks_create_with_enable_ai_toolchain_operator The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12967
Failed test_aks_create_with_enable_azure_monitor_app_monitoring The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15183
Failed test_aks_create_with_enable_cost_analysis The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13040
Failed test_aks_create_with_ephemeral_disk The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3683
Failed test_aks_create_with_fips The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8825
Failed test_aks_create_with_image_cleaner_enabled_with_default_interval_hours The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10290
Failed test_aks_create_with_image_cleaner_enabled_with_interval_hours The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10323
Failed test_aks_create_with_ingress_appgw_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4346
Failed test_aks_create_with_managed_disk The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3664
Failed test_aks_create_with_network_dataplane_cilium The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6827
Failed test_aks_create_with_network_plugin_none The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10492
Failed test_aks_create_with_node_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9649
Failed test_aks_create_with_node_os_upgrade_channel The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6664
Failed test_aks_create_with_node_os_upgrade_channel_security_patch The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6695
Failed test_aks_create_with_nsg_control The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11253
Failed test_aks_create_with_oidc_issuer_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5754
Failed test_aks_create_with_openservicemesh_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8356
Failed test_aks_create_with_ossku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3703
Failed test_aks_create_with_overlay_network_plugin_mode The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10652
Failed test_aks_create_with_paid_sku_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6040
Failed test_aks_create_with_ppg_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6314
Failed test_aks_create_with_standard_blob_csi_driver The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8652
Failed test_aks_create_with_standard_csi_drivers The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8616
Failed test_aks_create_with_standard_sku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2874
Failed test_aks_create_with_trustedaccess_rolebinding The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11637
Failed test_aks_create_with_vpa The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10884
Failed test_aks_create_with_windows_gmsa The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9069
Failed test_aks_create_with_windows_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6080
Failed test_aks_create_with_workload_identity_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5811
Failed test_aks_custom_headers The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8790
Failed test_aks_disable_addons_confcom_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6484
Failed test_aks_disable_local_accounts The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8322
Failed test_aks_disable_openservicemesh_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8396
Failed test_aks_enable_addon_with_azurekeyvaultsecretsprovider The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8477
Failed test_aks_enable_addons_confcom_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6459
Failed test_aks_enable_openservicemesh_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8373
Failed test_aks_enable_utlra_ssd The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6861
Failed test_aks_install_azure_npm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9914
Failed test_aks_install_calico_npm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10032
Failed test_aks_kubenet_to_cni_overlay_migration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9774
Failed test_aks_machine_cmds The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2526
Failed test_aks_maintenanceconfiguration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11144
Failed test_aks_maintenancewindow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11028
Failed test_aks_managed_aad The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3344
Failed test_aks_managed_aad_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6130
Failed test_aks_managed_identity_without_service_principal The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3250
Failed test_aks_managed_namespace The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7286
Failed test_aks_migrate_cluster_to_cilium_dataplane The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9816
Failed test_aks_migrate_vmas_to_vms The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14840
Failed test_aks_nodepool_add_with_disable_windows_outbound_nat The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4021
Failed test_aks_nodepool_add_with_gpu_instance_profile The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10613
Failed test_aks_nodepool_add_with_kata The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3139
Failed test_aks_nodepool_add_with_localdns_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15037
Failed test_aks_nodepool_add_with_localdns_required_mode The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15137
Failed test_aks_nodepool_add_with_ossku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3724
Failed test_aks_nodepool_add_with_ossku_azurelinux3 The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3835
Failed test_aks_nodepool_add_with_ossku_ubuntu2204 The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3760
Failed test_aks_nodepool_add_with_ossku_ubuntu2404 The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3797
Failed test_aks_nodepool_add_with_ossku_windows2022 The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3969
Failed test_aks_nodepool_autoscaler_then_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7008
Failed test_aks_nodepool_create_scale_delete_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5330
Failed test_aks_nodepool_create_with_nsg_control The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11339
Failed test_aks_nodepool_delete_with_ignore_pod_disruption_budget The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14023
Failed test_aks_nodepool_drain_timeout The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7049
Failed test_aks_nodepool_max_unavailable The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7189
Failed test_aks_nodepool_node_soak_duration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7088
Failed test_aks_nodepool_scale_down_mode The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5885
Failed test_aks_nodepool_snapshot The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8859
Failed test_aks_nodepool_stop_and_start The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7253
Failed test_aks_nodepool_system_pool_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5449
Failed test_aks_nodepool_undrainable_node_behavior The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7127
Failed test_aks_nodepool_update_label_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5562
Failed test_aks_nodepool_update_taints_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5659
Failed test_aks_nodepool_update_with_localdns_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15084
Failed test_aks_nodepool_update_with_nsg_control The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11439
Failed test_aks_private_cluster The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:448
Failed test_aks_private_cluster_update_dns_zone The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:531
Failed test_aks_private_cluster_without_public_fqdn The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:495
Failed test_aks_run_command The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9584
Failed test_aks_stop_and_start The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6357
Failed test_aks_stop_and_start_private_cluster The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6380
Failed test_aks_uninstall_azure_npm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9855
Failed test_aks_uninstall_calico_npm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9973
Failed test_aks_update_acns_preserves_existing_settings The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13852
Failed test_aks_update_agentpool_os_sku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13108
Failed test_aks_update_dualstack The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10712
Failed test_aks_update_enable_acns The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13290
Failed test_aks_update_enable_cost_analysis The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13067
Failed test_aks_update_node_provisioning_profile The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14985
Failed test_aks_update_outbound_from_slb_to_natgateway The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:1196
Failed test_aks_update_remove_custom_ca_trust_certificates The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14149
Failed test_aks_update_run_command The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14941
Failed test_aks_update_upgrade_settings The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11201
Failed test_aks_update_with_acns_transit_encryption The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13975
Failed test_aks_update_with_advanced_networkpolicies The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13789
Failed test_aks_update_with_enable_ai_toolchain_operator The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12997
Failed test_aks_update_with_enable_disable_azure_monitor_app_monitoring The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15212
Failed test_aks_update_with_image_cleaner The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10357
Failed test_aks_update_with_keda The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10843
Failed test_aks_update_with_oidc_issuer_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5780
Failed test_aks_update_with_perf The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13454
Failed test_aks_update_with_vpa The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10910
Failed test_aks_update_with_windows_gmsa The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9116
Failed test_aks_update_with_windows_password The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6510
Failed test_aks_update_with_workload_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5839
Failed test_aks_upgrade_kubernetes_version_nodepool The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3525
Failed test_aks_upgrade_upgrade_settings The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11775
Failed test_aks_upgrade_with_tier_switch The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11835
Failed test_managed_aad_enable_azure_rbac The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3379
Failed test_node_public_ip_tags The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11568
Failed test_vms_agentpool_type The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14711
Failed test_aks_deployment_safeguards The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_safeguards.py:43
Failed test_construct_mc_profile_default The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_managed_cluster_decorator.py:8546
Failed test_set_up_agentpool_profile The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_managed_cluster_decorator.py:6434
❌3.13
Type Test Case Error Message Line
Failed test_get_enable_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolContextStandaloneModeTestCase testMethod=test_get_enable_artifact_streaming>

    def test_get_enable_artifact_streaming(self):
>       self.common_get_enable_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:1994: 
                                        

self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolContextStandaloneModeTestCase testMethod=test_get_enable_artifact_streaming>

    def common_get_enable_artifact_streaming(self):
        # default
        ctx_1 = AKSAgentPoolContext(
            self.cmd,
            AKSAgentPoolParamDict({"enable_artifact_streaming": None}),
            self.models,
            DecoratorMode.CREATE,
            self.agentpool_decorator_mode,
        )
        self.assertEqual(ctx_1.get_enable_artifact_streaming(), None)
        agentpool_1 = self.create_initialized_agentpool_instance(
>           artifact_streaming_profile=self.models.AgentPoolArtifactStreamingProfile(
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                enabled=True
            )
        )
E       AttributeError: 'AKSAgentPoolModels' object has no attribute 'AgentPoolArtifactStreamingProfile'

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:1366: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:1992
Failed test_get_enable_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolContextManagedClusterModeTestCase testMethod=test_get_enable_artifact_streaming>

    def test_get_enable_artifact_streaming(self):
>       self.common_get_enable_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2193: 
                                        

self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolContextManagedClusterModeTestCase testMethod=test_get_enable_artifact_streaming>

    def common_get_enable_artifact_streaming(self):
        # default
        ctx_1 = AKSAgentPoolContext(
            self.cmd,
            AKSAgentPoolParamDict({"enable_artifact_streaming": None}),
            self.models,
            DecoratorMode.CREATE,
            self.agentpool_decorator_mode,
        )
        self.assertEqual(ctx_1.get_enable_artifact_streaming(), None)
        agentpool_1 = self.create_initialized_agentpool_instance(
>           artifact_streaming_profile=self.models.AgentPoolArtifactStreamingProfile(
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                enabled=True
            )
        )
E       AttributeError: 'AKSAgentPoolModels' object has no attribute 'AgentPoolArtifactStreamingProfile'

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:1366: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2191
Failed test_construct_agentpool_profile_default self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolAddDecoratorStandaloneModeTestCase testMethod=test_construct_agentpool_profile_default>

    def test_construct_agentpool_profile_default(self):
        import inspect
    
        from azure.cli.command_modules.acs.custom import aks_agentpool_add
    
        optional_params = {}
        positional_params = []
        for , v in inspect.signature(aks_agentpool_add).parameters.items():
            if v.default != v.empty:
                optional_params[v.name] = v.default
            else:
                positional_params.append(v.name)
        ground_truth_positional_params = [
            "cmd",
            "client",
            "resource_group_name",
            "cluster_name",
            "nodepool_name",
        ]
        self.assertEqual(positional_params, ground_truth_positional_params)
    
        # prepare a dictionary of default parameters
        raw_param_dict = {
            "resource_group_name": "test_rg_name",
            "cluster_name": "test_cluster_name",
            "nodepool_name": "test_nodepool_name",
        }
        raw_param_dict.update(optional_params)
    
        # default value in aks&nbsp;nodepool&nbsp;add
        dec_1 = AKSAgentPoolAddDecorator(
            self.cmd,
            self.client,
            raw_param_dict,
            self.resource_type,
            self.agentpool_decorator_mode,
        )
    
        with patch(
            "azure.cli.command_modules.acs.agentpool_decorator.cf_agent_pools",
            return_value=Mock(list=Mock(return_value=[])),
        ):
>           dec_agentpool_1 = dec_1.construct_agentpool_profile_default()
                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2949: 
                                        
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2344: in construct_agentpool_profile_default
    agentpool = self.set_up_artifact_streaming(agentpool)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2228: in set_up_artifact_streaming
    if self.context.get_enable_artifact_streaming():
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:1368: in get_enable_artifact_streaming
    self.agentpool.artifact_streaming_profile is not None and
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                       _ 

self = {'name': 'test_nodepool_name', 'properties': {'vmSize': '', 'osType': 'Linux', 'enableNodePublicIP': False, 'count': 3...ableEncryptionAtHost': False, 'enableUltraSSD': False, 'enableFIPS': False, 'mode': 'User', 'scaleDownMode': 'Delete'}}
name = 'artifact_streaming_profile'

    def getattr(self, name: str) -> Any:
        if name in self.__flattened_items:
            if self.properties is None:
                return None
            return getattr(self.properties, name)
>       raise AttributeError(f"'{self.class.name}' object has no attribute '{name}'")
E       AttributeError: 'AgentPool' object has no attribute 'artifact_streaming_profile'

env/lib/python3.13/site-packages/azure/mgmt/containerservice/models/_models.py:457: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2906
Failed test_set_up_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolAddDecoratorStandaloneModeTestCase testMethod=test_set_up_artifact_streaming>

    def test_set_up_artifact_streaming(self):
>       self.common_set_up_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2902: 
                                        
src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2757: in common_set_up_artifact_streaming
    dec_agentpool_1 = dec_1.set_up_artifact_streaming(agentpool_1)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2228: in set_up_artifact_streaming
    if self.context.get_enable_artifact_streaming():
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:1368: in get_enable_artifact_streaming
    self.agentpool.artifact_streaming_profile is not None and
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                        

self = {'name': 'nodepool1'}, name = 'artifact_streaming_profile'

    def getattr(self, name: str) -> Any:
        if name in self.__flattened_items:
            if self.properties is None:
                return None
            return getattr(self.properties, name)
>       raise AttributeError(f"'{self.class.name}' object has no attribute '{name}'")
E       AttributeError: 'AgentPool' object has no attribute 'artifact_streaming_profile'

env/lib/python3.13/site-packages/azure/mgmt/containerservice/models/_models.py:457: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:2900
Failed test_construct_agentpool_profile_default self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolAddDecoratorManagedClusterModeTestCase testMethod=test_construct_agentpool_profile_default>

    def test_construct_agentpool_profile_default(self):
        import inspect
    
        from azure.cli.command_modules.acs.custom import aks_create
    
        optional_params = {}
        positional_params = []
        for , v in inspect.signature(aks_create).parameters.items():
            if v.default != v.empty:
                optional_params[v.name] = v.default
            else:
                positional_params.append(v.name)
        ground_truth_positional_params = [
            "cmd",
            "client",
            "resource_group_name",
            "name",
            "ssh_key_value",
        ]
        self.assertEqual(positional_params, ground_truth_positional_params)
    
        # prepare a dictionary of default parameters
        raw_param_dict = {
            "resource_group_name": "test_rg_name",
            "name": "test_cluster_name",
            "ssh_key_value": None,
        }
        raw_param_dict.update(optional_params)
    
        # default value in aks_create
        dec_1 = AKSAgentPoolAddDecorator(
            self.cmd,
            self.client,
            raw_param_dict,
            self.resource_type,
            self.agentpool_decorator_mode,
        )
    
        with patch(
            "azure.cli.command_modules.acs.agentpool_decorator.cf_agent_pools",
            return_value=Mock(list=Mock(return_value=[])),
        ):
>           dec_agentpool_1 = dec_1.construct_agentpool_profile_default()
                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3109: 
                                        
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2344: in construct_agentpool_profile_default
    agentpool = self.set_up_artifact_streaming(agentpool)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2228: in set_up_artifact_streaming
    if self.context.get_enable_artifact_streaming():
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                       _ 

self = <azure.cli.command_modules.acs.agentpool_decorator.AKSAgentPoolContext object at 0x7efd19cb92b0>

    def get_enable_artifact_streaming(self) -> bool:
        """Obtain the value of enable_artifact_streaming.
    
        :return: bool
        """
        # read the original value passed by the command
        enable_artifact_streaming = self.raw_param.get("enable_artifact_streaming")
        # In create mode, try to read the property value corresponding to the parameter from the agentpool object
        if self.decorator_mode == DecoratorMode.CREATE:
            if (
                self.agentpool and
>               self.agentpool.artifact_streaming_profile is not None and
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                self.agentpool.artifact_streaming_profile.enabled is not None
            ):
E           AttributeError: 'ManagedClusterAgentPoolProfile' object has no attribute 'artifact_streaming_profile'

src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:1368: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3066
Failed test_update_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolUpdateDecoratorStandaloneModeTestCase testMethod=test_update_artifact_streaming>

    def test_update_artifact_streaming(self):
>       self.common_update_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3676: 
                                        
src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3388: in common_update_artifact_streaming
    dec_agentpool_1 = dec_1.update_artifact_streaming(agentpool_1)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2692: in update_artifact_streaming
    if agentpool.artifact_streaming_profile is None:
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                        

self = {'name': 'nodepool1'}, name = 'artifact_streaming_profile'

    def getattr(self, name: str) -> Any:
        if name in self.__flattened_items:
            if self.properties is None:
                return None
            return getattr(self.properties, name)
>       raise AttributeError(f"'{self.class.name}' object has no attribute '{name}'")
E       AttributeError: 'AgentPool' object has no attribute 'artifact_streaming_profile'

env/lib/python3.13/site-packages/azure/mgmt/containerservice/models/_models.py:457: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3674
Failed test_update_artifact_streaming self = <azure.cli.command_modules.acs.tests.latest.test_agentpool_decorator.AKSAgentPoolUpdateDecoratorManagedClusterModeTestCase testMethod=test_update_artifact_streaming>

    def test_update_artifact_streaming(self):
>       self.common_update_artifact_streaming()

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3807: 
                                        
src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3388: in common_update_artifact_streaming
    dec_agentpool_1 = dec_1.update_artifact_streaming(agentpool_1)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                        

self = <azure.cli.command_modules.acs.agentpool_decorator.AKSAgentPoolUpdateDecorator object at 0x7efd19cb9010>
agentpool = {'name': 'nodepool1'}

    def update_artifact_streaming(self, agentpool: AgentPool) -> AgentPool:
        """Update artifact streaming for the AgentPool object.
    
        :return: the AgentPool object
        """
        self._ensure_agentpool(agentpool)
    
        if self.context.get_enable_artifact_streaming():
>           if agentpool.artifact_streaming_profile is None:
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E           AttributeError: 'ManagedClusterAgentPoolProfile' object has no attribute 'artifact_streaming_profile'

src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2692: AttributeError
azure/cli/command_modules/acs/tests/latest/test_agentpool_decorator.py:3805
Failed test_aks_abort self = <azure.cli.testsdk.base.ExecutionResult object at 0x7efd19cb8ad0>
cli_ctx = <azure.cli.core.mock.DummyCli object at 0x7efd1cad9450>
command = 'aks create --resource-group=clitest000001 --name=cliakstest000002 --ssh-key-value=/tmp/tmpvay2xpho --no-wait'
expect_failure = False

    def in_process_execute(self, cli_ctx, command, expect_failure=False):
        from io import StringIO
        from vcr.errors import CannotOverwriteExistingCassetteException
    
        if command.startswith('az '):
            command = command[3:]
    
        stdout_buf = StringIO()
        logging_buf = StringIO()
        try:
            # issue: stderr cannot be redirect in this form, as a result some failure information
            # is lost when command fails.
>           self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/azure-cli-testsdk/azure/cli/testsdk/base.py:303: 
                                        
env/lib/python3.13/site-packages/knack/cli.py:245: in invoke
    exit_code = self.exception_handler(ex)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/init.py:157: in exception_handler
    return handle_exception(ex)
           ^^^^^^^^^^^^^^^^^^^^
                                        

ex = AttributeError("'ManagedClusterAgentPoolProfile' object has no attribute 'artifact_streaming_profile'")
args = (), kwargs = {}

    def handle_main_exception(ex, *args, **kwargs):  # pylint: disable=unused-argument
        if isinstance(ex, CannotOverwriteExistingCassetteException):
            # This exception usually caused by a no match HTTP request. This is a product error
            # that is caused by change of SDK invocation.
            raise ex
    
>       raise CliExecutionError(ex)
E       azure.cli.testsdk.exceptions.CliExecutionError: The CLI throws exception AttributeError during execution and fails the command.

src/azure-cli-testsdk/azure/cli/testsdk/patches.py:35: CliExecutionError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.acs.tests.latest.test_aks_commands.AzureKubernetesServiceScenarioTest testMethod=test_aks_abort>
resource_group = 'clitest000001', resource_group_location = 'westus2'

    @AllowLargeResponse()
    @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2')
    def test_aks_abort(self, resource_group, resource_group_location):
        aks_name = self.create_random_name('cliakstest', 16)
        self.kwargs.update({
            'resource_group': resource_group,
            'name': aks_name,
            'ssh_key_value': self.generate_ssh_keys(),
        })
    
        create_cmd = 'aks create --resource-group={resource_group} --name={name} --ssh-key-value={ssh_key_value} --no-wait'
>       self.cmd(create_cmd)

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6413: 
 
                                       
src/azure-cli-testsdk/azure/cli/testsdk/base.py:177: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-testsdk/azure/cli/testsdk/base.py:252: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:315: in in_process_execute
    raise ex.exception
env/lib/python3.13/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/commands/init.py:677: in execute
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:820: in run_jobs_serially
    results.append(self.run_job(expanded_arg, cmd_copy))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/commands/init.py:789: in run_job
    result = cmd_copy(params)
             ^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/commands/init.py:335: in call
    return self.handler(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli-core/azure/cli/core/commands/command_operation.py:120: in handler
    return op(**command_args)
           ^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/custom.py:1067: in aks_create
    mc = aks_create_decorator.construct_mc_profile_default()
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py:7534: in construct_mc_profile_default
    mc = self.set_up_agentpool_profile(mc)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py:6281: in set_up_agentpool_profile
    agentpool_profile = self.agentpool_decorator.construct_agentpool_profile_default()
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2344: in construct_agentpool_profile_default
    agentpool = self.set_up_artifact_streaming(agentpool)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:2228: in set_up_artifact_streaming
    if self.context.get_enable_artifact_streaming():
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 
 
 
                                   _ 

self = <azure.cli.command_modules.acs.agentpool_decorator.AKSAgentPoolContext object at 0x7efd188b4440>

    def get_enable_artifact_streaming(self) -> bool:
        """Obtain the value of enable_artifact_streaming.
    
        :return: bool
        """
        # read the original value passed by the command
        enable_artifact_streaming = self.raw_param.get("enable_artifact_streaming")
        # In create mode, try to read the property value corresponding to the parameter from the agentpool object
        if self.decorator_mode == DecoratorMode.CREATE:
            if (
                self.agentpool and
>               self.agentpool.artifact_streaming_profile is not None and
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                self.agentpool.artifact_streaming_profile.enabled is not None
            ):
E           AttributeError: 'ManagedClusterAgentPoolProfile' object has no attribute 'artifact_streaming_profile'

src/azure-cli/azure/cli/command_modules/acs/agentpool_decorator.py:1368: AttributeError
azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6401
Failed test_aks_and_agentpool_with_static_egress_gateway The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14533
Failed test_aks_api_server_authorized_ip_ranges The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:565
Failed test_aks_approuting_enable_disable The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12024
Failed test_aks_approuting_enable_with_internal_nginx_then_disable The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12086
Failed test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12134
Failed test_aks_approuting_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12200
Failed test_aks_approuting_zone_add_delete_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12388
Failed test_aks_approuting_zone_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12510
Failed test_aks_availability_zones_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5968
Failed test_aks_azure_cni_overlay_migration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9732
Failed test_aks_azure_service_mesh_canary_upgrade The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2640
Failed test_aks_azure_service_mesh_enable_disable The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2269
Failed test_aks_azure_service_mesh_get_upgrades The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2831
Failed test_aks_azure_service_mesh_with_ingress_gateway The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2586
Failed test_aks_azure_service_mesh_with_pluginca The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2759
Failed test_aks_browse The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6881
Failed test_aks_cluster_kata The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3094
Failed test_aks_control_plane_user_assigned_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4219
Failed test_aks_create_add_nodepool_with_custom_ca_trust_certificates The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14119
Failed test_aks_create_add_nodepool_with_motd The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14079
Failed test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8448
Failed test_aks_create_again_should_fail The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10951
Failed test_aks_create_and_update_ipv6_count The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10754
Failed test_aks_create_and_update_with_blob_csi_driver The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8682
Failed test_aks_create_and_update_with_csi_drivers_extensibility The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8549
Failed test_aks_create_and_update_with_managed_nat_gateway_outbound The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:1161
Failed test_aks_create_and_update_with_nrg_restriction_level The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9611
Failed test_aks_create_autoscaler_then_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6929
Failed test_aks_create_blb_vmas_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4876
Failed test_aks_create_default The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:277
Failed test_aks_create_default_service_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4513
Failed test_aks_create_default_service_with_skip_role_assignment_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4761
Failed test_aks_create_default_setting_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4945
Failed test_aks_create_disable_rbac The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8020
Failed test_aks_create_dualstack_with_default_network The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10683
Failed test_aks_create_edge_zone The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9683
Failed test_aks_create_enable_azure_rbac The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7997
Failed test_aks_create_enable_encryption The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7975
Failed test_aks_create_gpu_driver_flow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14455
Failed test_aks_create_loadbalancer_then_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7510
Failed test_aks_create_network_cidr The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7589
Failed test_aks_create_no_ssh_key The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:231
Failed test_aks_create_node_provisioning_profile The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14897
Failed test_aks_create_node_public_ip The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7554
Failed test_aks_create_node_resource_group The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10091
Failed test_aks_create_nonaad_and_update_with_managed_aad The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3417
Failed test_aks_create_nonaad_and_update_with_managed_aad_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6165
Failed test_aks_create_scale_with_custom_nodepool_name_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4674
Failed test_aks_create_service_no_wait_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4605
Failed test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5031
Failed test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5227
Failed test_aks_create_slb_vmss_with_outbound_ip_then_update_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5126
Failed test_aks_create_spot_node_pool The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3577
Failed test_aks_create_spot_node_pool_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6273
Failed test_aks_create_update_fips_flow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2970
Failed test_aks_create_update_secure_boot_flow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13137
Failed test_aks_create_update_vtpm_flow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13221
Failed test_aks_create_with_acns_perf The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13397
Failed test_aks_create_with_acns_transit_encryption The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13933
Failed test_aks_create_with_advanced_networkpolicies The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13711
Failed test_aks_create_with_apiserver_vnet_integration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10517
Failed test_aks_create_with_apiserver_vnet_integration_public The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10565
Failed test_aks_create_with_app_routing_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11904
Failed test_aks_create_with_app_routing_enabled_and_nginx_specified The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11940
Failed test_aks_create_with_app_routing_enabled_and_nginx_specified_abbrv The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11982
Failed test_aks_create_with_auto_upgrade_channel The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6624
Failed test_aks_create_with_auto_upgrade_channel_and_node_os_upgrade_channel The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6720
Failed test_aks_create_with_azurekeyvaultsecretsprovider_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8420
Failed test_aks_create_with_confcom_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6421
Failed test_aks_create_with_confcom_addon_helper_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6440
Failed test_aks_create_with_crg_id The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11718
Failed test_aks_create_with_enable_acns The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13351
Failed test_aks_create_with_enable_acns_complex The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13516
Failed test_aks_create_with_enable_ai_toolchain_operator The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12967
Failed test_aks_create_with_enable_azure_monitor_app_monitoring The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15183
Failed test_aks_create_with_enable_cost_analysis The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13040
Failed test_aks_create_with_ephemeral_disk The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3683
Failed test_aks_create_with_fips The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8825
Failed test_aks_create_with_image_cleaner_enabled_with_default_interval_hours The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10290
Failed test_aks_create_with_image_cleaner_enabled_with_interval_hours The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10323
Failed test_aks_create_with_ingress_appgw_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4346
Failed test_aks_create_with_managed_disk The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3664
Failed test_aks_create_with_network_dataplane_cilium The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6827
Failed test_aks_create_with_network_plugin_none The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10492
Failed test_aks_create_with_node_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9649
Failed test_aks_create_with_node_os_upgrade_channel The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6664
Failed test_aks_create_with_node_os_upgrade_channel_security_patch The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6695
Failed test_aks_create_with_nsg_control The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11253
Failed test_aks_create_with_oidc_issuer_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5754
Failed test_aks_create_with_openservicemesh_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8356
Failed test_aks_create_with_ossku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3703
Failed test_aks_create_with_overlay_network_plugin_mode The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10652
Failed test_aks_create_with_paid_sku_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6040
Failed test_aks_create_with_ppg_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6314
Failed test_aks_create_with_standard_blob_csi_driver The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8652
Failed test_aks_create_with_standard_csi_drivers The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8616
Failed test_aks_create_with_standard_sku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2874
Failed test_aks_create_with_trustedaccess_rolebinding The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11637
Failed test_aks_create_with_vpa The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10884
Failed test_aks_create_with_windows_gmsa The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9069
Failed test_aks_create_with_windows_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6080
Failed test_aks_create_with_workload_identity_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5811
Failed test_aks_custom_headers The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8790
Failed test_aks_disable_addons_confcom_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6484
Failed test_aks_disable_local_accounts The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8322
Failed test_aks_disable_openservicemesh_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8396
Failed test_aks_enable_addon_with_azurekeyvaultsecretsprovider The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8477
Failed test_aks_enable_addons_confcom_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6459
Failed test_aks_enable_openservicemesh_addon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8373
Failed test_aks_enable_utlra_ssd The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6861
Failed test_aks_install_azure_npm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9914
Failed test_aks_install_calico_npm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10032
Failed test_aks_kubenet_to_cni_overlay_migration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9774
Failed test_aks_machine_cmds The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:2526
Failed test_aks_maintenanceconfiguration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11144
Failed test_aks_maintenancewindow The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11028
Failed test_aks_managed_aad The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3344
Failed test_aks_managed_aad_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6130
Failed test_aks_managed_identity_without_service_principal The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3250
Failed test_aks_managed_namespace The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7286
Failed test_aks_migrate_cluster_to_cilium_dataplane The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9816
Failed test_aks_migrate_vmas_to_vms The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14840
Failed test_aks_nodepool_add_with_disable_windows_outbound_nat The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:4021
Failed test_aks_nodepool_add_with_gpu_instance_profile The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10613
Failed test_aks_nodepool_add_with_kata The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3139
Failed test_aks_nodepool_add_with_localdns_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15037
Failed test_aks_nodepool_add_with_localdns_required_mode The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15137
Failed test_aks_nodepool_add_with_ossku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3724
Failed test_aks_nodepool_add_with_ossku_azurelinux3 The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3835
Failed test_aks_nodepool_add_with_ossku_ubuntu2204 The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3760
Failed test_aks_nodepool_add_with_ossku_ubuntu2404 The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3797
Failed test_aks_nodepool_add_with_ossku_windows2022 The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3969
Failed test_aks_nodepool_autoscaler_then_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7008
Failed test_aks_nodepool_create_scale_delete_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5330
Failed test_aks_nodepool_create_with_nsg_control The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11339
Failed test_aks_nodepool_delete_with_ignore_pod_disruption_budget The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14023
Failed test_aks_nodepool_drain_timeout The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7049
Failed test_aks_nodepool_max_unavailable The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7189
Failed test_aks_nodepool_node_soak_duration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7088
Failed test_aks_nodepool_scale_down_mode The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5885
Failed test_aks_nodepool_snapshot The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:8859
Failed test_aks_nodepool_stop_and_start The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7253
Failed test_aks_nodepool_system_pool_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5449
Failed test_aks_nodepool_undrainable_node_behavior The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:7127
Failed test_aks_nodepool_update_label_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5562
Failed test_aks_nodepool_update_taints_msi The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5659
Failed test_aks_nodepool_update_with_localdns_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15084
Failed test_aks_nodepool_update_with_nsg_control The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11439
Failed test_aks_private_cluster The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:448
Failed test_aks_private_cluster_update_dns_zone The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:531
Failed test_aks_private_cluster_without_public_fqdn The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:495
Failed test_aks_run_command The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9584
Failed test_aks_stop_and_start The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6357
Failed test_aks_stop_and_start_private_cluster The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6380
Failed test_aks_uninstall_azure_npm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9855
Failed test_aks_uninstall_calico_npm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9973
Failed test_aks_update_acns_preserves_existing_settings The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13852
Failed test_aks_update_agentpool_os_sku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13108
Failed test_aks_update_dualstack The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10712
Failed test_aks_update_enable_acns The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13290
Failed test_aks_update_enable_cost_analysis The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13067
Failed test_aks_update_node_provisioning_profile The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14985
Failed test_aks_update_outbound_from_slb_to_natgateway The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:1196
Failed test_aks_update_remove_custom_ca_trust_certificates The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14149
Failed test_aks_update_run_command The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14941
Failed test_aks_update_upgrade_settings The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11201
Failed test_aks_update_with_acns_transit_encryption The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13975
Failed test_aks_update_with_advanced_networkpolicies The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13789
Failed test_aks_update_with_enable_ai_toolchain_operator The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:12997
Failed test_aks_update_with_enable_disable_azure_monitor_app_monitoring The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:15212
Failed test_aks_update_with_image_cleaner The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10357
Failed test_aks_update_with_keda The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10843
Failed test_aks_update_with_oidc_issuer_enabled The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5780
Failed test_aks_update_with_perf The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:13454
Failed test_aks_update_with_vpa The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:10910
Failed test_aks_update_with_windows_gmsa The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:9116
Failed test_aks_update_with_windows_password The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:6510
Failed test_aks_update_with_workload_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:5839
Failed test_aks_upgrade_kubernetes_version_nodepool The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3525
Failed test_aks_upgrade_upgrade_settings The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11775
Failed test_aks_upgrade_with_tier_switch The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11835
Failed test_managed_aad_enable_azure_rbac The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:3379
Failed test_node_public_ip_tags The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:11568
Failed test_vms_agentpool_type The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_commands.py:14711
Failed test_aks_deployment_safeguards The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_aks_safeguards.py:43
Failed test_construct_mc_profile_default The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_managed_cluster_decorator.py:8546
Failed test_set_up_agentpool_profile The error message is too long, please check the pipeline log for details. azure/cli/command_modules/acs/tests/latest/test_managed_cluster_decorator.py:6434
️✔️advisor
️✔️latest
️✔️3.12
️✔️3.13
️✔️ams
️✔️latest
️✔️3.12
️✔️3.13
️✔️apim
️✔️latest
️✔️3.12
️✔️3.13
️✔️appconfig
️✔️latest
️✔️3.12
️✔️3.13
️✔️appservice
️✔️latest
️✔️3.12
️✔️3.13
️✔️aro
️✔️latest
️✔️3.12
️✔️3.13
️✔️backup
️✔️latest
️✔️3.12
️✔️3.13
️✔️batch
️✔️latest
️✔️3.12
️✔️3.13
️✔️batchai
️✔️latest
️✔️3.12
️✔️3.13
️✔️billing
️✔️latest
️✔️3.12
️✔️3.13
️✔️botservice
️✔️latest
️✔️3.12
️✔️3.13
️✔️cdn
️✔️latest
️✔️3.12
️✔️3.13
️✔️cloud
️✔️latest
️✔️3.12
️✔️3.13
️✔️cognitiveservices
️✔️latest
️✔️3.12
️✔️3.13
️✔️compute_recommender
️✔️latest
️✔️3.12
️✔️3.13
️✔️computefleet
️✔️latest
️✔️3.12
️✔️3.13
️✔️config
️✔️latest
️✔️3.12
️✔️3.13
️✔️configure
️✔️latest
️✔️3.12
️✔️3.13
️✔️consumption
️✔️latest
️✔️3.12
️✔️3.13
️✔️container
️✔️latest
️✔️3.12
️✔️3.13
️✔️containerapp
️✔️latest
️✔️3.12
️✔️3.13
️✔️core
️✔️latest
️✔️3.12
️✔️3.13
️✔️cosmosdb
️✔️latest
️✔️3.12
️✔️3.13
️✔️databoxedge
️✔️latest
️✔️3.12
️✔️3.13
️✔️dls
️✔️latest
️✔️3.12
️✔️3.13
️✔️dms
️✔️latest
️✔️3.12
️✔️3.13
️✔️eventgrid
️✔️latest
️✔️3.12
️✔️3.13
️✔️eventhubs
️✔️latest
️✔️3.12
️✔️3.13
️✔️feedback
️✔️latest
️✔️3.12
️✔️3.13
️✔️find
️✔️latest
️✔️3.12
️✔️3.13
️✔️hdinsight
️✔️latest
️✔️3.12
️✔️3.13
️✔️identity
️✔️latest
️✔️3.12
️✔️3.13
️✔️iot
️✔️latest
️✔️3.12
️✔️3.13
️✔️keyvault
️✔️latest
️✔️3.12
️✔️3.13
️✔️lab
️✔️latest
️✔️3.12
️✔️3.13
️✔️managedservices
️✔️latest
️✔️3.12
️✔️3.13
️✔️maps
️✔️latest
️✔️3.12
️✔️3.13
️✔️marketplaceordering
️✔️latest
️✔️3.12
️✔️3.13
️✔️monitor
️✔️latest
️✔️3.12
️✔️3.13
️✔️mysql
️✔️latest
️✔️3.12
️✔️3.13
️✔️netappfiles
️✔️latest
️✔️3.12
️✔️3.13
️✔️network
️✔️latest
️✔️3.12
️✔️3.13
️✔️policyinsights
️✔️latest
️✔️3.12
️✔️3.13
️✔️postgresql
️✔️latest
️✔️3.12
️✔️3.13
️✔️privatedns
️✔️latest
️✔️3.12
️✔️3.13
️✔️profile
️✔️latest
️✔️3.12
️✔️3.13
️✔️rdbms
️✔️latest
️✔️3.12
️✔️3.13
️✔️redis
️✔️latest
️✔️3.12
️✔️3.13
️✔️relay
️✔️latest
️✔️3.12
️✔️3.13
️✔️resource
️✔️latest
️✔️3.12
️✔️3.13
️✔️role
️✔️latest
️✔️3.12
️✔️3.13
️✔️search
️✔️latest
️✔️3.12
️✔️3.13
️✔️security
️✔️latest
️✔️3.12
️✔️3.13
️✔️servicebus
️✔️latest
️✔️3.12
️✔️3.13
️✔️serviceconnector
️✔️latest
️✔️3.12
️✔️3.13
️✔️servicefabric
️✔️latest
️✔️3.12
️✔️3.13
️✔️signalr
️✔️latest
️✔️3.12
️✔️3.13
️✔️sql
️✔️latest
️✔️3.12
️✔️3.13
️✔️sqlvm
️✔️latest
️✔️3.12
️✔️3.13
️✔️storage
️✔️latest
️✔️3.12
️✔️3.13
️✔️synapse
️✔️latest
️✔️3.12
️✔️3.13
️✔️telemetry
️✔️latest
️✔️3.12
️✔️3.13
️✔️util
️✔️latest
️✔️3.12
️✔️3.13
️✔️vm
️✔️latest
️✔️3.12
️✔️3.13

@azure-client-tools-bot-prd
Copy link
Copy Markdown

Hi @mxj220,
Since the current milestone time is less than 7 days, this pr will be reviewed in the next milestone.

@azure-client-tools-bot-prd
Copy link
Copy Markdown

azure-client-tools-bot-prd Bot commented Apr 23, 2026

❌AzureCLI-BreakingChangeTest
❌acs
rule cmd_name rule_message suggest_message
1010 - ParaPropUpdate aks nodepool add cmd aks nodepool add update parameter spot_max_price: updated property default from nan to nan please change property default from nan to nan for parameter spot_max_price of cmd aks nodepool add
⚠️ 1006 - ParaAdd aks nodepool add cmd aks nodepool add added parameter enable_artifact_streaming
⚠️ 1006 - ParaAdd aks nodepool update cmd aks nodepool update added parameter disable_artifact_streaming
⚠️ 1006 - ParaAdd aks nodepool update cmd aks nodepool update added parameter enable_artifact_streaming

Please submit your Breaking Change Pre-announcement ASAP if you haven't already. Please note:

  • Breaking changes can only be merged during the designated breaking change window
  • A pre-announcement must be released at least one month in advance

For more details on how to introduce breaking changes, refer to the documentation: azure-cli/doc/how_to_introduce_breaking_changes.md

@yonzhan
Copy link
Copy Markdown
Collaborator

yonzhan commented Apr 23, 2026

Thank you for your contribution! We will review the pull request and get back to you soon.

@github-actions
Copy link
Copy Markdown

The git hooks are available for azure-cli and azure-cli-extensions repos. They could help you run required checks before creating the PR.

Please sync the latest code with latest dev branch (for azure-cli) or main branch (for azure-cli-extensions).
After that please run the following commands to enable git hooks:

pip install azdev --upgrade
azdev setup -c <your azure-cli repo path> -r <your azure-cli-extensions repo path>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants