Trying to update to 5.4.5 and encountering an erro...
# neuvector-security
a
Trying to update to 5.4.5 and encountering an error on startup of the enforcer. We're just validating on k3d right now, which has worked in the past, but seems like there's an issue detecting the container runtime:
Copy code
2025-07-21T14:45:57.488|INFO|AGT|container.Connect: - endpoint=
2025-07-21T14:45:57.502|ERRO|AGT|main.main: Failed to initialize - error=Unknown container runtime
2025-07-21T14:45:57|MON|Process agent exit status 254, signal 0, pid=14395
2025-07-21T14:45:57|MON|Process agent exit with non-recoverable return code. Monitor Exit!!
Any ideas? I skimmed the diffs for the release and couldn't see anything obvious 🤔
s
@abundant-apple-86556 May I know from which version did you upgrade to 5.4.5 and what is the deployment method? We just tried 5.4.5 on k3d, it worked for us.
a
I just figured out our issue - it was actually related to the helm chart update that we pulled in at the same time. Our helm values previously had
enforcer.securityContext
set incorrectly, but it wasn't actually being used by the chart. As a result of this PR those values are now getting used, so we had to fix to run with the proper security context. Took a bit to trace down but noticed in the logs that it was saying
sysctl: permission denied on key
, and resolving that got it running as expected.
👍 1