diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-28 08:39:02 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-28 08:39:02 +0100 |
commit | 8a24f650c2abf3a45724dfcd7aa73c5d12b7b9ef (patch) | |
tree | 7513307ff527fe3a661ccd28b10c8b93f5372b32 | |
parent | 53ebca75b61ebd65003ee9513ca63e9c636c3b9e (diff) | |
download | infrastructure-8a24f650c2abf3a45724dfcd7aa73c5d12b7b9ef.tar.gz infrastructure-8a24f650c2abf3a45724dfcd7aa73c5d12b7b9ef.zip |
[jitsi] Increase resource limit
-rw-r--r-- | nomad/jitsi.hcl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/nomad/jitsi.hcl b/nomad/jitsi.hcl index cae7e5b..ff96792 100644 --- a/nomad/jitsi.hcl +++ b/nomad/jitsi.hcl @@ -195,6 +195,10 @@ job "jitsi" { video1_port = 4443 video2_port = 10000 } + ulimit { + nofile = "1048576:1048576" + nproc = "65536:65536" + } } artifact { @@ -209,8 +213,8 @@ job "jitsi" { } resources { - cpu = 300 - memory = 500 + cpu = 900 + memory = 1500 network { port "video1_port" { static = "4443" |