1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-18 08:06:16 +01:00
infrastructure/roles/gitlab_runner/files/daemon.json
Kristian Klausen 45d80caf78
gitlab_runner: Set reasonable NOFILE limits to avoid bugs
The default limits cause issues as reported upstream[1][2], it also
breaks the mkinitcpio CI[3]. So match the limits set in systemd since
v240[4].

[1] https://github.com/moby/moby/issues/38814
[2] https://github.com/containerd/containerd/pull/7566
[3] da223d2f96
[4] 4f44d2c4f7/NEWS (L6556-L6590)
2023-04-02 23:35:24 +02:00

14 lines
210 B
JSON

{
"ipv6": true,
"fixed-cidr-v6": "fd00::/80",
"cgroup-parent": "docker.slice",
"log-driver": "journald",
"default-ulimits": {
"nofile": {
"Name": "nofile",
"Hard": 524288,
"Soft": 1024
}
}
}