From 2ee627b8a41ccacc540a655ebcbb19ab2243ca97 Mon Sep 17 00:00:00 2001 From: Jon Huhn Date: Tue, 17 Jun 2025 12:42:38 -0500 Subject: [PATCH] Remove Windows nodes from HA e2e test --- test/e2e/azure_test.go | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/test/e2e/azure_test.go b/test/e2e/azure_test.go index a459623a3ea..99d35e868d9 100644 --- a/test/e2e/azure_test.go +++ b/test/e2e/azure_test.go @@ -200,9 +200,6 @@ var _ = Describe("Workload cluster creation", func() { It("With 3 control-plane nodes and 2 Linux and 2 Windows worker nodes", func() { clusterName = getClusterName(clusterNamePrefix, "ha") - // Opt into using windows with prow template - Expect(os.Setenv("WINDOWS_WORKER_MACHINE_COUNT", "2")).To(Succeed()) - clusterctl.ApplyClusterTemplateAndWait(ctx, createApplyClusterTemplateInput( specName, withNamespace(namespace.Name), @@ -279,18 +276,6 @@ var _ = Describe("Workload cluster creation", func() { }) }) - By("Creating an accessible load balancer for windows", func() { - AzureLBSpec(ctx, func() AzureLBSpecInput { - return AzureLBSpecInput{ - BootstrapClusterProxy: bootstrapClusterProxy, - Namespace: namespace, - ClusterName: clusterName, - SkipCleanup: skipCleanup, - Windows: true, - } - }) - }) - By("PASSED!") }) })