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.
This commit is contained in:
Jakub Kadlcik 2023-05-18 00:02:03 +02:00
parent d1d9b83a9f
commit c98a710884

View file

@ -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 %}