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
When settings collectors.containerd.socket=/run/k3s/containerd/containerd.sock, the socket is mounted at the wrong place, causing <NA> on kubernetes fields.
Either, in falco.yaml, .cri.sockets should be set to /run/containerd/containerd.sock, or the socket directory should be mounted at /host/run/k3s/containerd/.
While waiting for the fix, this is the correct way to mount k3s containerd path:
# File access configuration (scenario requirement)mounts:
# -- A list of volumes you want to add to the Falco pods.volumes:
- name: k3s-containerd-sockethostPath:
path: /run/k3s/containerd# -- A list of volumes you want to add to the Falco pods.volumeMounts:
- mountPath: /host/run/k3s/containerdname: k3s-containerd-socket
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.
Describe the bug
When settings collectors.containerd.socket=/run/k3s/containerd/containerd.sock, the socket is mounted at the wrong place, causing
<NA>
on kubernetes fields.How to reproduce it
helm template falco falcosecurity/falco --version 4.20.0 --set collectors.containerd.socket=/run/k3s/containerd/containerd.sock
Configmap shows:
But the socket is mounted at
/run/containerd
. See DaemonSet:Expected behaviour
Either, in
falco.yaml
,.cri.sockets
should be set to/run/containerd/containerd.sock
, or the socket directory should be mounted at/host/run/k3s/containerd/
.I'm using this as a workaround for now:
Screenshots
Before patching the configmap:
After patching the configmap manually by setting
/run/containerd/containerd.sock
incri.sockets
:Environment
The text was updated successfully, but these errors were encountered: