-
QuestionNow I deployed vector in Kubernetes with DaemonSet. Vector ConfigVector Logs |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
fwiw, this is expected with the default/distroless image. The generated agent manifest uses I also tried the same config on So for quick debugging, temporarily use the Alpine image tag. For the file sink itself, I'd avoid relying on the container's private |
Beta Was this translation helpful? Give feedback.
fwiw, this is expected with the default/distroless image.
The generated agent manifest uses
timberio/vector:0.55.0-distroless-libc, and that image does not include shell/coreutils. I ran the same image with a tiny file sink config: Vector started and wrote to/tmp/vector-recheck.log, andexec /usr/bin/vector --versionworked, butexec ls /tmpfailed withexec: "ls": executable file not found in $PATH./bin/lsandshare missing too.I also tried the same config on
timberio/vector:0.55.0-alpine; therels /tmpworks.So for quick debugging, temporarily use the Alpine image tag. For the file sink itself, I'd avoid relying on the container's private
/tmplong-term. Mount a volume for that pat…