Skip to content

Commit

Permalink
fix: increase module resources
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioHeredia committed Aug 26, 2024
1 parent 0659d54 commit 903615a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions etc/try_me/nomad.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,15 @@ job "try-${JOB_UUID}" {
command = "deep-start"
args = ["--deepaas"]
ports = ["api"]
shm_size = 500000000 # 500MB
memory_hard_limit = 1000 # 1GB
shm_size = 1000000000 # 1GB
memory_hard_limit = 2000 # 2GB
}

resources {
cores = 1
memory = 1000 # 1GB
memory_max = 1000 # 1GB
memory = 2000 # 2GB
memory_max = 2000 # 2GB
}
}

}
Expand Down

0 comments on commit 903615a

Please sign in to comment.