Skip to content

Commit 281549d

Browse files
authored
Merge pull request #1781 from saschagrunert/oom-kill-update
Add `crictl update --oom-score-adj` flag
2 parents ec763f8 + 1a12fc5 commit 281549d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cmd/crictl/container.go

+5
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,10 @@ var updateContainerCommand = &cli.Command{
319319
Name: "cpuset-mems",
320320
Usage: "Memory node(s) to use",
321321
},
322+
&cli.StringFlag{
323+
Name: "oom-score-adj",
324+
Usage: "OOM Killer score to use",
325+
},
322326
},
323327
Action: func(c *cli.Context) error {
324328
if c.NArg() == 0 {
@@ -338,6 +342,7 @@ var updateContainerCommand = &cli.Command{
338342
CpusetCpus: c.String("cpuset-cpus"),
339343
CpusetMems: c.String("cpuset-mems"),
340344
MemoryLimitInBytes: c.Int64("memory"),
345+
OomScoreAdj: c.Int64("oom-score-adj"),
341346
}
342347

343348
for i := range c.NArg() {

0 commit comments

Comments
 (0)