Skip to content

Commit

Permalink
fix: set worker machine count to 0 because no workers are being created
Browse files Browse the repository at this point in the history
  • Loading branch information
faiq committed May 24, 2023
1 parent c97ea3c commit 6d908b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/e2e/suites/managed/eks_ipv6_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var _ = ginkgo.Describe("[managed] [general] [ipv6] EKS cluster tests", func() {
ClusterName: clusterName,
Flavour: EKSIPv6ClusterFlavor,
ControlPlaneMachineCount: 1, //NOTE: this cannot be zero as clusterctl returns an error
WorkerMachineCount: 1,
WorkerMachineCount: 0,
}
})

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/suites/managed/upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ var _ = ginkgo.Describe("EKS Cluster upgrade test", func() {
ClusterName: clusterName,
Flavour: EKSControlPlaneOnlyFlavor, // TODO (richardcase) - change in the future when upgrades to machinepools work
ControlPlaneMachineCount: 1, // NOTE: this cannot be zero as clusterctl returns an error
WorkerMachineCount: 1,
WorkerMachineCount: 0,
KubernetesVersion: initialVersion,
}
})
Expand Down

0 comments on commit 6d908b4

Please sign in to comment.