try to make gitlab eat less ram

This commit is contained in:
cy 2025-01-04 22:24:38 -05:00
parent 9ac67db109
commit 7e15d0e71e

View file

@ -8,7 +8,7 @@
group = "git"; group = "git";
port = 443; # this *not* the port gitlab will run on port = 443; # this *not* the port gitlab will run on
puma.workers = 0; # https://docs.gitlab.com/omnibus/settings/memory_constrained_envs.html#optimize-puma puma.workers = 0; # https://docs.gitlab.com/omnibus/settings/memory_constrained_envs.html#optimize-puma
sidekiq.concurrency = 10; sidekiq.concurrency = 5;
databaseUsername = "git"; # needs to be same as user databaseUsername = "git"; # needs to be same as user
initialRootEmail = "hi@cything.io"; initialRootEmail = "hi@cything.io";
initialRootPasswordFile = config.sops.secrets."gitlab/root".path; initialRootPasswordFile = config.sops.secrets."gitlab/root".path;
@ -24,5 +24,9 @@
skip = [ "db" ]; skip = [ "db" ];
keepTime = 48; # hours keepTime = 48; # hours
}; };
extraConfig = {
gitlab.default_theme = 11;
prometheus.enabled = false;
};
}; };
} }