We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After release 12.6.5290, the entrypoint.sh script doesn't seem to work in terms of placing values in conf.d files bases on environment variables.
12.6.5290
entrypoint.sh
conf.d
For example, 12.6.5290 dd-agent image places the KUBERNETES* env values into /etc/dd-agent/conf.d/kubernetes.yaml:
KUBERNETES*
/etc/dd-agent/conf.d/kubernetes.yaml
docker run --rm -it \ -e 'KUBERNETES=yes' \ -e 'KUBERNETES_COLLECT_EVENTS=yes' \ -e 'KUBERNETES_NAMESPACE_NAME_REGEX=blue' \ datadog/docker-dd-agent:12.6.5290 /bin/bash root@0364e253be2d:/# cat /etc/dd-agent/conf.d/kubernetes.yaml | grep -v '#' init_config: instances: - port: 4194 collect_events: true namespace_name_regexp: blue
While in the next release, 12.6.5300, it doesn't:
12.6.5300
docker run --rm -it \ -e 'KUBERNETES=yes' \ -e 'KUBERNETES_COLLECT_EVENTS=yes' \ -e 'KUBERNETES_NAMESPACE_NAME_REGEX=blue' \ datadog/docker-dd-agent:12.6.5300 /bin/bash root@6b9b1ab209a5:/# cat /etc/dd-agent/conf.d/kubernetes.yaml | grep -v '#' init_config: instances: - port: 4194
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After release
12.6.5290
, theentrypoint.sh
script doesn't seem to work in terms of placing values inconf.d
files bases on environment variables.For example,
12.6.5290
dd-agent image places theKUBERNETES*
env values into/etc/dd-agent/conf.d/kubernetes.yaml
:While in the next release,
12.6.5300
, it doesn't:The text was updated successfully, but these errors were encountered: