File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,26 @@ import (
24
24
"k8s.io/utils/pointer"
25
25
)
26
26
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 () {
28
47
scaleSpec (ctx , func () scaleSpecInput {
29
48
return scaleSpecInput {
30
49
E2EConfig : e2eConfig ,
You can’t perform that action at this time.
0 commit comments