@@ -333,8 +333,8 @@ func TestConstructProvisionValues(t *testing.T) {
333333 // Check system mode
334334 assert .Equal (t , models .AgentPoolModeSystem , * profile .Mode )
335335
336- // Check artifact streaming is enabled
337- assert .True (t , * profile .ArtifactStreamingProfile .Enabled )
336+ // Check artifact streaming is disabled
337+ assert .False (t , * profile .ArtifactStreamingProfile .Enabled )
338338
339339 // Check FIPS enablement (unset/nil FIPSMode is effectively false for now)
340340 assert .False (t , * profile .EnableFIPS )
@@ -700,8 +700,8 @@ func TestArtifactStreamingEnablement(t *testing.T) {
700700 ossku : customscriptsbootstrap .ImageFamilyOSSKUUbuntu2204 ,
701701 kubernetesVersion : "1.31.0" ,
702702 imageDistro : "aks-ubuntu-containerd-22.04-gen2" ,
703- expectedArtifactStreamingEnabled : true ,
704- description : "Artifact streaming should be enabled for AMD64 with Ubuntu2204" ,
703+ expectedArtifactStreamingEnabled : false ,
704+ description : "Artifact streaming should be disabled for AMD64 with Ubuntu2204" ,
705705 },
706706 {
707707 name : "AMD64 Ubuntu2404 - Artifact streaming disabled" ,
@@ -718,8 +718,8 @@ func TestArtifactStreamingEnablement(t *testing.T) {
718718 ossku : customscriptsbootstrap .ImageFamilyOSSKUAzureLinux2 ,
719719 kubernetesVersion : "1.31.0" ,
720720 imageDistro : "aks-azurelinux-v2-gen2" ,
721- expectedArtifactStreamingEnabled : true ,
722- description : "Artifact streaming should be enabled for AMD64 with AzureLinux2" ,
721+ expectedArtifactStreamingEnabled : false ,
722+ description : "Artifact streaming should be disabled for AMD64 with AzureLinux2" ,
723723 },
724724 {
725725 name : "AMD64 AzureLinux3 - Artifact streaming disabled" ,
0 commit comments