You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This approach blocks users from mounting additional configuration files (e.g., /etc/telegraf/telegraf.d/http.conf) via separate volumeMounts, because the entire /etc/telegraf directory is already occupied by the initial mount.
Proposal
To enable mounting supplemental configuration files under /etc/telegraf/telegraf.d, please consider changing the volumeMounts entry to use subPath and mount the main configuration file directly:
This enables users to cleanly inject additional Telegraf input/output configurations via separate ConfigMaps or volumes, without conflicting with the main config mount.