Disable oomkiller just for smaller containers
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/promote/production Build is passing Details

This commit is contained in:
Adam Štrauch 2023-09-25 19:46:42 +02:00
parent ed5061fd58
commit 072a643c1d
Signed by: cx
GPG Key ID: 7262DAFE292BCE20
1 changed files with 5 additions and 2 deletions

View File

@ -338,7 +338,10 @@ func (d *Driver) Create(name string, image string, volumePath string, HTTPPort i
}
}
trueValue := true
OOMKillDisable := false
if memory < 250 {
OOMKillDisable = true
}
createdContainer, err := cli.ContainerCreate(
context.Background(),
@ -358,7 +361,7 @@ func (d *Driver) Create(name string, image string, volumePath string, HTTPPort i
CPUQuota: int64(CPU) * 1000,
Memory: int64(memory*110/100) * 1024 * 1024, // Allow 10 % more memory so we have space for MemoryReservation
MemoryReservation: int64(memory) * 1024 * 1024, // This should provide softer way how to limit the memory of our containers
OomKillDisable: &trueValue,
OomKillDisable: &OOMKillDisable,
},
PortBindings: portBindings,
AutoRemove: false,