You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
crun v1.9 added this change, which writes the /proc/self/oom_score_adj if the HostConfig.OomScoreAdj value is present in the create-container request JSON.
crun
v1.9 added this change, which writes the/proc/self/oom_score_adj
if theHostConfig.OomScoreAdj
value is present in the create-container request JSON.It seems that the oom-score-adj value is always serialized, even if it's not configured.
This causes all container startups to fail with
crun: write to /proc/self/oom_score_adj: Permission denied
.Maybe it's sufficient to add a
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
to at least theoomScoreAdj
property?The text was updated successfully, but these errors were encountered: