Skip to content

Commit 1a12fc5

Browse files
committed
Add crictl update --oom-score-adj flag
We have not used the value for the container update since now, which is now being added for feature completeness. Signed-off-by: Sascha Grunert <[email protected]>
1 parent 69f5e5e commit 1a12fc5

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)