Skip to content

Commit ac96b94

Browse files
authored
Merge pull request kubernetes-sigs#9510 from killianmuldoon/pr-scale-periodic
🌱 Add test for scale testing machinery
2 parents db30007 + cafcad1 commit ac96b94

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

test/e2e/scale_test.go

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,26 @@ import (
2424
"k8s.io/utils/pointer"
2525
)
2626

27-
var _ = Describe("When scale testing using in-memory provider [Scale]", func() {
27+
var _ = Describe("When testing the machinery for scale testing using in-memory provider", func() {
28+
scaleSpec(ctx, func() scaleSpecInput {
29+
return scaleSpecInput{
30+
E2EConfig: e2eConfig,
31+
ClusterctlConfigPath: clusterctlConfigPath,
32+
InfrastructureProvider: pointer.String("in-memory"),
33+
BootstrapClusterProxy: bootstrapClusterProxy,
34+
ArtifactFolder: artifactFolder,
35+
ClusterCount: pointer.Int64(10),
36+
Concurrency: pointer.Int64(5),
37+
Flavor: pointer.String(""),
38+
ControlPlaneMachineCount: pointer.Int64(1),
39+
MachineDeploymentCount: pointer.Int64(1),
40+
WorkerMachineCount: pointer.Int64(3),
41+
SkipCleanup: skipCleanup,
42+
}
43+
})
44+
})
45+
46+
var _ = Describe("When scale testing using in-memory provider [Scale]", func() {
2847
scaleSpec(ctx, func() scaleSpecInput {
2948
return scaleSpecInput{
3049
E2EConfig: e2eConfig,

0 commit comments

Comments
 (0)