From 9da94c454fc6d1e2e6ce41f0bc177b9711ccc66b Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Mon, 27 Aug 2018 14:14:09 -0400 Subject: Set default max open files in spec Signed-off-by: Matthew Heon Closes: #1355 Approved by: rhatdan --- pkg/spec/spec.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkg/spec/spec.go b/pkg/spec/spec.go index a915c305f..a2fa169e5 100644 --- a/pkg/spec/spec.go +++ b/pkg/spec/spec.go @@ -444,13 +444,24 @@ func addRlimits(config *CreateConfig, g *generate.Generator) error { err error ) + nofileSet := false + for _, u := range config.Resources.Ulimit { if ul, err = units.ParseUlimit(u); err != nil { return errors.Wrapf(err, "ulimit option %q requires name=SOFT:HARD, failed to be parsed", u) } + if ul.Name == "nofile" { + nofileSet = true + } + g.AddProcessRlimits("RLIMIT_"+strings.ToUpper(ul.Name), uint64(ul.Hard), uint64(ul.Soft)) } + + if !nofileSet { + g.AddProcessRlimits("RLIMIT_NOFILE", 1048576, 1048576) + } + return nil } -- cgit v1.2.3-54-g00ecf