]> git.openstreetmap.org Git - chef.git/commitdiff
podman: increase default pid limit.
authorGrant Slater <github@firefishy.com>
Mon, 18 Mar 2024 17:33:01 +0000 (17:33 +0000)
committerGrant Slater <github@firefishy.com>
Mon, 18 Mar 2024 17:33:56 +0000 (17:33 +0000)
Workaround 2048 pid limit. Extremely low, causing issues with titiler.
Ideally should be set using a paramater.

Signed-off-by: Grant Slater <github@firefishy.com>
cookbooks/podman/resources/service.rb

index d2ee9070562ad323fefb7ffddb81e8a96dd4bb9a..07c98c1a22a1c137c342054fa2a9d74b52f2408e 100644 (file)
@@ -34,7 +34,7 @@ action :create do
     notify_access "all"
     environment "PODMAN_SYSTEMD_UNIT" => "%n"
     exec_start_pre "/bin/rm --force %t/%n.ctr-id"
-    exec_start "/usr/bin/podman run --cidfile=%t/%n.ctr-id --cgroups=no-conmon --userns=auto --label=io.containers.autoupdate=registry --network=slirp4netns:mtu=1500 #{publish_options} #{environment_options} --rm --sdnotify=conmon --detach --replace --name=%N #{new_resource.image}"
+    exec_start "/usr/bin/podman run --cidfile=%t/%n.ctr-id --cgroups=no-conmon --userns=auto --label=io.containers.autoupdate=registry --network=slirp4netns:mtu=1500 --pid-limit=-1 #{publish_options} #{environment_options} --rm --sdnotify=conmon --detach --replace --name=%N #{new_resource.image}"
     exec_stop "/usr/bin/podman stop --ignore --time=10 --cidfile=%t/%n.ctr-id"
     exec_stop_post "/usr/bin/podman rm --force --ignore --cidfile=%t/%n.ctr-id"
     timeout_start_sec 180