From 91f68d42bf3bd9d01f8711c52ae940b778fc37a1 Mon Sep 17 00:00:00 2001 From: Nikita Kalyazin Date: Mon, 8 Jul 2024 14:33:20 +0000 Subject: [PATCH] chore: Pin m6i/5.10 and m6i/6.1 AMIs We are seeing performance volatility on newest AMIs. Signed-off-by: Nikita Kalyazin --- .buildkite/pipeline_perf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.buildkite/pipeline_perf.py b/.buildkite/pipeline_perf.py index 30bac887b75..2c28fd236b4 100755 --- a/.buildkite/pipeline_perf.py +++ b/.buildkite/pipeline_perf.py @@ -119,7 +119,10 @@ # } # will pin steps running on instances "m6i.metal" with kernel version tagged "linux_6.1" # to a new kernel version tagged "linux_6.1-pinned" -pins = {} +pins = { + "linux_5.10-pinned": {"instance": "m6i.metal", "kv": "linux_5.10"}, + "linux_6.1-pinned": {"instance": "m6i.metal", "kv": "linux_6.1"}, +} def apply_pins(steps):