From 51f9104d0fe4e8f5b41b7ddb2c6e380a6b10808d Mon Sep 17 00:00:00 2001 From: Josh Patterson Date: Wed, 11 Mar 2026 14:37:43 -0400 Subject: [PATCH] set container ulimits to default --- salt/common/files/daemon.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/salt/common/files/daemon.json b/salt/common/files/daemon.json index 32d1fc1fe..bc6c85745 100644 --- a/salt/common/files/daemon.json +++ b/salt/common/files/daemon.json @@ -8,5 +8,12 @@ "base": "172.17.0.0/24", "size": 24 } - ] + ], + "default-ulimits": { + "nofile": { + "Name": "nofile", + "Soft": 1048576, + "Hard": 1048576 + } + } }