I'm attempting to mount a filepath into my datadog agent container, which is being provisioned into a kubernetes cluster via Datadog Helm Chart.
I'm using agents.volumes value to pass in. which the docs describe as "Specify additional volumes to mount in the dd-agent container".
Based on the syntax found in the Datadog/helm-charts repo - I'm using:
agents:
volumes:
- hostPath:
path: /var/log/cloud-init.log
name: cloud-init
But when I apply that change to my cluster, I don't see any evidence that this path has been mounted anywhere on my agent container. I'm not seeing any great explanation of mount a volume from my host container into the datadog agent container.