Skip to content

Commit e242f37

Browse files
committedNov 27, 2024·
version bump, explicit node prefix for Java nodes
1 parent 3fa5eb7 commit e242f37

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎webhook/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CRD_OPTIONS ?= "crd:generateEmbeddedObjectMeta=true"
88

99
IMAGE_OWNER ?= chrlic
1010
IMAGE_NAME ?= appd-webhook-instrumentor-ng
11-
IMAGE_VERSION ?= 2.0.0
11+
IMAGE_VERSION ?= 2.0.1
1212

1313
HELM_DEPLOYMENT_NAME ?= mwh
1414
HELM_DEPLOYMENT_NAMESPACE ?= mwh

‎webhook/pkg/instrumentAppdJava.go

+1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ func getJavaOptions(pod corev1.Pod, instrRules *v1alpha1.InstrumentationSpec) st
108108
javaOpts += "-Dappdynamics.agent.accountAccessKey=$(APPDYNAMICS_AGENT_ACCOUNT_ACCESS_KEY) "
109109
if reuseNodeNames(instrRules) {
110110
javaOpts += "-Dappdynamics.agent.reuse.nodeName=true "
111+
javaOpts += "-Dappdynamics.agent.reuse.nodeName.prefix=" + getTierName(pod, instrRules) + " "
111112
}
112113
javaOpts += "-Dappdynamics.socket.collection.bci.enable=true "
113114
javaOpts += "-javaagent:/opt/appdynamics-java/javaagent.jar "

0 commit comments

Comments
 (0)
Please sign in to comment.