Skip to content

Commit

Permalink
Merge pull request #3354 from chrischdi/pr-scale-reduce-load
Browse files Browse the repository at this point in the history
🌱 scale: reduce replicas and amount of clusters as we test upgrades too to reduce load
  • Loading branch information
k8s-ci-robot authored Feb 13, 2025
2 parents 1cbdb16 + 6018b7a commit 71ea1a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/scale_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ var _ = Describe("When testing the machinery for scale testing using vcsim provi
ClusterClassName: getVariableOrFallback(testSpecificSettingsGetter().Variables["CLUSTER_CLASS_NAME"], e2eConfig.MustGetVariable("CLUSTER_CLASS_NAME")),

// ClusterCount can be overwritten via `CAPI_SCALE_CLUSTER_COUNT`.
ClusterCount: ptr.To[int64](10),
ClusterCount: ptr.To[int64](5),
// Concurrency can be overwritten via `CAPI_SCALE_CONCURRENCY`.
Concurrency: ptr.To[int64](5),
// ControlPlaneMachineCount can be overwritten via `CAPI_SCALE_CONTROL_PLANE_MACHINE_COUNT`.
ControlPlaneMachineCount: ptr.To[int64](1),
// MachineDeploymentCount can be overwritten via `CAPI_SCALE_MACHINE_DEPLOYMENT_COUNT`.
MachineDeploymentCount: ptr.To[int64](1),
// WorkerPerMachineDeploymentCount can be overwritten via `CAPI_SCALE_WORKER_PER_MACHINE_DEPLOYMENT_COUNT`.
WorkerPerMachineDeploymentCount: ptr.To[int64](3),
WorkerPerMachineDeploymentCount: ptr.To[int64](1),
// AdditionalClusterClassCount can be overwritten via `CAPI_SCALE_ADDITIONAL_CLUSTER_CLASS_COUNT`.
AdditionalClusterClassCount: ptr.To[int64](4),
// DeployClusterInSeparateNamespaces can be overwritten via `CAPI_SCALE_DEPLOY_CLUSTER_IN_SEPARATE_NAMESPACES`.
Expand Down

0 comments on commit 71ea1a5

Please sign in to comment.