-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
set ELASTIC_APM_ACTIVATION_METHOD in code rather than values.yaml so it works for custom webhookConfig.agents.*
names
#91
Labels
apm-k8s-attacher
Mutating Webhook to attach apm agents on k8s
Comments
github-actions
bot
added
the
apm-k8s-attacher
Mutating Webhook to attach apm agents on k8s
label
Jan 11, 2024
/cc @elastic/apm-agent-node-js @elastic/apm-agent-net |
trentm
added a commit
that referenced
this issue
Jan 11, 2024
…es.yaml This means that custom 'webhookConfig.agent.*' names do not need to repeat this envvar. It *does* mean that newer Node.js and .NET APM agents that use the newer value (used to be 'K8S') will be required for the 'activation_method' to get set correctly. Closes: #91
trentm
added a commit
to elastic/apm-agent-nodejs
that referenced
this issue
Jan 11, 2024
This is a the new favoured value for the envvar to indicate the apm-k8s-attacher is being used. This should be backported. Refs: elastic/apm-k8s-attacher#91
trentm
added a commit
to elastic/apm-agent-nodejs
that referenced
this issue
Jan 11, 2024
…#3819) This is a the new favoured value for the envvar to indicate the apm-k8s-attacher is being used. This should be backported. Refs: elastic/apm-k8s-attacher#91
trentm
added a commit
to elastic/apm-agent-nodejs
that referenced
this issue
Jan 11, 2024
…#3819) (Backport of commit 7c0ba9d from main branch.) This is a the new favoured value for the envvar to indicate the apm-k8s-attacher is being used. This should be backported. Refs: elastic/apm-k8s-attacher#91
jackshirazi
pushed a commit
that referenced
this issue
Jan 12, 2024
…R_URL`; integration.yml workflow tweak (#87) * test: drop redundant kind cluster creation in integration.yml workflow * use ELASTIC_APM_SERVER_URL instead of the plural; the plural works with java, but not the Node.js or other APM agents * set ELASTIC_APM_ACTIVATION_METHOD=K8S_ATTACH in code rather than values.yaml This means that custom 'webhookConfig.agent.*' names do not need to repeat this envvar. It *does* mean that newer Node.js and .NET APM agents that use the newer value (used to be 'K8S') will be required for the 'activation_method' to get set correctly. Closes: #91 * fix tests * improve the workflow step name
trentm
added a commit
to elastic/apm-agent-nodejs
that referenced
this issue
Jan 12, 2024
…#3819) (#3821) (Backport of commit 7c0ba9d from main branch.) This is a the new favoured value for the envvar to indicate the apm-k8s-attacher is being used. This should be backported. Refs: elastic/apm-k8s-attacher#91
fpm-peter
pushed a commit
to fpm-git/apm-agent-nodejs
that referenced
this issue
Aug 20, 2024
…elastic#3819) This is a the new favoured value for the envvar to indicate the apm-k8s-attacher is being used. This should be backported. Refs: elastic/apm-k8s-attacher#91
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently
ELASTIC_APM_ACTIVATION_METHOD
is set inwebhookConfig.agents.{name}
in the chart'svalues.yaml
. E.g.:An issue with setting the envvar this was is that a custom
webhookConfig.agents.
name requires one to repeat that envvar. As noted at https://www.elastic.co/guide/en/apm/attacher/current/apm-webhook-add-pod-annotation.htmlInstead, it would be more helpful to set that envvar always in the webhook code, then the config becomes simpler.
One requirement of doing this is that we need to use a common value for all APM agents. We decided to use the value currently being used by the Java agent:
K8S_ATTACH
. That means that new versions of the Node.js and .NET agents will be needed that supportELASTIC_APM_ACTIVATION_METHOD=K8S_ATTACH
. I plan to change the Node.js APM agent to support both values so that the newer APM agent will work with current and newer versions of the Helm chart.The text was updated successfully, but these errors were encountered: