Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update pipeline to run aks free vs. standard test #341

Merged
merged 8 commits into from
Oct 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ stages:
timeout_in_minutes: 360
credential_type: service_connection
ssh_key_enabled: false
- stage: azure_eastus2
- stage: azure_eastus2_free
dependsOn: []
jobs:
- template: /jobs/competitive-test.yml
@@ -54,9 +54,38 @@ stages:
workload-low:
flowcontrol: "workload-low:1000"
extra_benchmark_subcmd_args: ""
sku_tier: Free
exempt:
flowcontrol: "exempt:5"
extra_benchmark_subcmd_args: ""
sku_tier: Free
engine_input:
runner_image: telescope.azurecr.io/oss/kperf:v0.1.5
benchmark_subcmd: node10_job1_pod100
benchmark_subcmd_args: "--total 1000"
max_parallel: 2
timeout_in_minutes: 360
credential_type: service_connection
ssh_key_enabled: false
- stage: azure_eastus2_standard
dependsOn: []
jobs:
- template: /jobs/competitive-test.yml
parameters:
cloud: azure
regions:
- eastus2
engine: kperf
topology: kperf
matrix:
workload-low:
flowcontrol: "workload-low:1000"
extra_benchmark_subcmd_args: ""
sku_tier: Standard
exempt:
flowcontrol: "exempt:5"
extra_benchmark_subcmd_args: ""
sku_tier: Standard
engine_input:
runner_image: telescope.azurecr.io/oss/kperf:v0.1.5
benchmark_subcmd: node10_job1_pod100
3 changes: 2 additions & 1 deletion steps/cloud/azure/collect-cloud-info.yml
Original file line number Diff line number Diff line change
@@ -15,8 +15,9 @@ steps:
--arg region "$(echo $aks_info | jq -r .location)" \
--arg fqdn "$(echo $aks_info | jq -r .fqdn)" \
--arg k8s_version "$(echo $aks_info | jq -r .currentKubernetesVersion)" \
--arg sku_tier "$(echo $aks_info | jq -r .sku.tier)" \
--arg subscription "$(az account show --query id --output tsv)" \
'{cloud: $cloud, region: $region, fqdn: $fqdn, k8s_version: $k8s_version, subscription: $subscription}')
'{cloud: $cloud, region: $region, fqdn: $fqdn, k8s_version: $k8s_version, sku_tier: $sku_tier, subscription: $subscription}')
cloud_info_str=$(echo $cloud_info | jq -c .)
echo "Cloud info: $cloud_info_str"
echo "##vso[task.setvariable variable=CLOUD_INFO;]$cloud_info_str"