From c98a7108845da51f665fc8d30e76233659b7bef0 Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Thu, 18 May 2023 00:02:03 +0200 Subject: [PATCH] copr-backend: raise spot price limit for aarch64 builders See https://github.com/praiskup/resalloc-aws/pull/5 I was getting the following error: An error occurred (SpotMaxPriceTooLow) when calling the RunInstances operation: Your Spot request price of 0.102 is lower than the minimum required Spot request fulfillment price of 0.1371. So I am setting the price limit to the same value as for x86_64 builders. --- roles/copr/backend/templates/resalloc/pools.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/copr/backend/templates/resalloc/pools.yaml b/roles/copr/backend/templates/resalloc/pools.yaml index b64e8311f1..5281b772fe 100644 --- a/roles/copr/backend/templates/resalloc/pools.yaml +++ b/roles/copr/backend/templates/resalloc/pools.yaml @@ -48,7 +48,7 @@ aws_aarch64_{% if spot %}spot{% else %}normal{% endif %}_{% if devel %}dev{% els - arch_aarch64_native - aws {% if spot %} - cmd_new: copr-resalloc-aws-new-aarch64 --spot-price 0.102 + cmd_new: copr-resalloc-aws-new-aarch64 --spot-price 0.156 {% else %} cmd_new: copr-resalloc-aws-new-aarch64 {% endif %}