-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create new test suite to test performance of the scheduler with both …
…upstream defaults and new Azure-specific overridden defaults.
- Loading branch information
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
71 changes: 71 additions & 0 deletions
71
pipelines/perf-eval/Scheduler Benchmark/cluster-churn-nodes1000-pods50k-sched.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
trigger: none | ||
schedules: | ||
- cron: "19 1/12 * * *" | ||
displayName: "1:19 AM and PM every day" | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
|
||
variables: | ||
SCENARIO_TYPE: perf-eval | ||
SCENARIO_NAME: cluster-churn-n1000p50k-sched | ||
SCENARIO_VERSION: main | ||
|
||
stages: | ||
- stage: azure_eastus2_sched_upstream_default | ||
dependsOn: [] | ||
variables: | ||
- group: Scheduler-Upstream-Default-Config | ||
jobs: | ||
- template: /jobs/competitive-test.yml | ||
parameters: | ||
cloud: azure | ||
regions: | ||
- eastus2 | ||
engine: clusterloader2 | ||
engine_input: | ||
image: "ghcr.io/azure/clusterloader2:v20241022" | ||
topology: slo | ||
matrix: | ||
azure_sched: | ||
cpu_per_node: 4 | ||
node_count: 1000 | ||
node_per_step: 100 | ||
max_pods: 110 | ||
repeats: 1 | ||
scale_timeout: "30m" | ||
cl2_config_file: cluster-scale-config.yaml | ||
service_test: False | ||
max_parallel: 1 | ||
timeout_in_minutes: 720 | ||
credential_type: service_connection | ||
ssh_key_enabled: false | ||
- stage: azure_eastus2_sched_override_default | ||
dependsOn: [] | ||
variables: | ||
- group: Scheduler-Override-Default-Config | ||
jobs: | ||
- template: /jobs/competitive-test.yml | ||
parameters: | ||
cloud: azure | ||
regions: | ||
- eastus2 | ||
engine: clusterloader2 | ||
engine_input: | ||
image: "ghcr.io/azure/clusterloader2:v20241022" | ||
topology: slo | ||
matrix: | ||
azure_sched: | ||
cpu_per_node: 4 | ||
node_count: 1000 | ||
node_per_step: 100 | ||
max_pods: 110 | ||
repeats: 1 | ||
scale_timeout: "30m" | ||
cl2_config_file: cluster-scale-config.yaml | ||
service_test: False | ||
max_parallel: 1 | ||
timeout_in_minutes: 720 | ||
credential_type: service_connection | ||
ssh_key_enabled: false |