From e07026b2b6a74d46df22efedb781b5596b1ac495 Mon Sep 17 00:00:00 2001 From: Zachary Bailey Date: Wed, 22 Apr 2026 17:13:49 -0400 Subject: [PATCH 1/2] fix: use default sku for k8s system pool --- e2e/scenario_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/scenario_test.go b/e2e/scenario_test.go index c9715280277..760e981f449 100644 --- a/e2e/scenario_test.go +++ b/e2e/scenario_test.go @@ -1842,7 +1842,7 @@ func Test_AzureLinuxV3_MA35D(t *testing.T) { }, // No MA35D GPU capacity in West US, so using East US Location: "eastus", - K8sSystemPoolSKU: "Standard_D2s_v3", + K8sSystemPoolSKU: "", }) } @@ -1872,7 +1872,7 @@ func Test_AzureLinuxV3_MA35D_Scriptless(t *testing.T) { }, // No MA35D GPU capacity in West US, so using East US Location: "eastus", - K8sSystemPoolSKU: "Standard_D2s_v3", + K8sSystemPoolSKU: "", }) } From dff09aba0416169c145e2adfe789b7acea1ca376 Mon Sep 17 00:00:00 2001 From: Zachary Bailey Date: Wed, 22 Apr 2026 17:15:16 -0400 Subject: [PATCH 2/2] fix --- e2e/scenario_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/scenario_test.go b/e2e/scenario_test.go index 760e981f449..399ec6f9c98 100644 --- a/e2e/scenario_test.go +++ b/e2e/scenario_test.go @@ -1842,7 +1842,7 @@ func Test_AzureLinuxV3_MA35D(t *testing.T) { }, // No MA35D GPU capacity in West US, so using East US Location: "eastus", - K8sSystemPoolSKU: "", + K8sSystemPoolSKU: config.Config.DefaultVMSKU, }) } @@ -1872,7 +1872,7 @@ func Test_AzureLinuxV3_MA35D_Scriptless(t *testing.T) { }, // No MA35D GPU capacity in West US, so using East US Location: "eastus", - K8sSystemPoolSKU: "", + K8sSystemPoolSKU: config.Config.DefaultVMSKU, }) }