Skip to content
Snippets Groups Projects
Verified Commit c370c9d0 authored by Kristian Klausen's avatar Kristian Klausen :tada:
Browse files

gitlab_runner: Update concurreny math to reflect the new VM size

Fixes: 97bc3928 ("gitlab_runner: raise max memory to 2GB")
parent de2c748c
No related branches found
No related tags found
No related merge requests found
Pipeline #91900 passed
......@@ -32,7 +32,7 @@ listen_address = ":9252"
executor = "custom"
builds_dir = "/builds"
cache_dir = "/cache"
limit = {{ (ansible_memtotal_mb * 0.9 / 1024) | round | int }}
limit = {{ (ansible_memtotal_mb * 0.9 / 2048) | round | int }}
environment = ["ARCHIVER_STAGING_DIR=/var/tmp"]
[runners.custom]
prepare_exec = "/usr/local/bin/libvirt-executor"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment