有没有一种方法可以像使用hostPath
卷挂载访问主机/节点的文件系统一样,从Kubernetes pod访问底层主机/节点的进程?
PS:我正在尝试通过在Kubernetes上作为Pod部署的auditbeat
监视节点进程。
最佳答案
我相信您正在寻找的是 hostPID: true
in the PodSpec:
spec:
hostPID: true
containers:
- name: show-init
command:
- ps
- -p
- "1"
理论上应该输出“/ sbin / init”,因为它在主机的PID namespace 中运行