Compare commits

...

2 Commits

1 changed files with 12 additions and 2 deletions

View File

@ -2,8 +2,18 @@
{
microvm = {
vcpu = 4;
mem = 2 * 1024; # drone-ssh-runner clones the git repo which requires some RAM
# Running on server10 which has 40 threads on 20 cores
vcpu = 20;
# drone-ssh-runner clones the git repo into tmpfs which requires
# some RAM
mem = 2 * 1024;
};
# drone-ssh-runner clones into /tmp which needs to be bigger than
# the default rootfs tmpfs
boot.tmp = {
useTmpfs = true;
tmpfsSize = "80%";
};
c3d2.deployment = {