Skip to content

Commit 6d908b4

Browse files
committed
fix: set worker machine count to 0 because no workers are being created
1 parent c97ea3c commit 6d908b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/e2e/suites/managed/eks_ipv6_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ var _ = ginkgo.Describe("[managed] [general] [ipv6] EKS cluster tests", func() {
7272
ClusterName: clusterName,
7373
Flavour: EKSIPv6ClusterFlavor,
7474
ControlPlaneMachineCount: 1, //NOTE: this cannot be zero as clusterctl returns an error
75-
WorkerMachineCount: 1,
75+
WorkerMachineCount: 0,
7676
}
7777
})
7878

test/e2e/suites/managed/upgrade_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ var _ = ginkgo.Describe("EKS Cluster upgrade test", func() {
7070
ClusterName: clusterName,
7171
Flavour: EKSControlPlaneOnlyFlavor, // TODO (richardcase) - change in the future when upgrades to machinepools work
7272
ControlPlaneMachineCount: 1, // NOTE: this cannot be zero as clusterctl returns an error
73-
WorkerMachineCount: 1,
73+
WorkerMachineCount: 0,
7474
KubernetesVersion: initialVersion,
7575
}
7676
})

0 commit comments

Comments
 (0)