Results 1 issues of scheshan

按照文档,要采集容器文件,部署DaemonSet的时候还要挂载根目录。 ``` - hostPath: path: / type: Directory name: root ``` 这个路径太大了,我们准备按需要挂载。我们CRI是containerd,我把rootfs、挂载卷、标准输出的几个路径都单独挂载了 ``` volumeMounts: - mountPath: /var/run # for container runtime socket name: run - mountPath: /logtail_host/home/containerd # for log...

question