Skip to content

Commit

Permalink
Merge pull request #9510 from killianmuldoon/pr-scale-periodic
Browse files Browse the repository at this point in the history
🌱 Add test for scale testing machinery
  • Loading branch information
k8s-ci-robot committed Oct 2, 2023
2 parents db30007 + cafcad1 commit ac96b94
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion test/e2e/scale_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,26 @@ import (
"k8s.io/utils/pointer"
)

var _ = Describe("When scale testing using in-memory provider [Scale]", func() {
var _ = Describe("When testing the machinery for scale testing using in-memory provider", func() {
scaleSpec(ctx, func() scaleSpecInput {
return scaleSpecInput{
E2EConfig: e2eConfig,
ClusterctlConfigPath: clusterctlConfigPath,
InfrastructureProvider: pointer.String("in-memory"),
BootstrapClusterProxy: bootstrapClusterProxy,
ArtifactFolder: artifactFolder,
ClusterCount: pointer.Int64(10),
Concurrency: pointer.Int64(5),
Flavor: pointer.String(""),
ControlPlaneMachineCount: pointer.Int64(1),
MachineDeploymentCount: pointer.Int64(1),
WorkerMachineCount: pointer.Int64(3),
SkipCleanup: skipCleanup,
}
})
})

var _ = Describe("When scale testing using in-memory provider [Scale]", func() {
scaleSpec(ctx, func() scaleSpecInput {
return scaleSpecInput{
E2EConfig: e2eConfig,
Expand Down

0 comments on commit ac96b94

Please sign in to comment.