apiVersion: v1 kind: Pod metadata: name: sysdig-0341 spec: containers: - name: probe image: docker.io/sysdig/sysdig:0.34.1 command: ["sleep", "3600"] env: - name: SYSDIG_BPF_PROBE value: "" securityContext: privileged: true runAsUser: 0 volumeMounts: - name: boot-vol mountPath: /host/boot readOnly: true - name: host-etc-vol mountPath: /host/etc readOnly: true volumes: - name: boot-vol hostPath: path: /boot - name: host-etc-vol hostPath: path: /etc tolerations: - operator: Exists restartPolicy: Never