Skip to content
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

Predefining Java autoinstrumentation image in operator #798

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions deploy/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,9 @@ The operator expects that Cert Manager is already present on the cluster. There
apiVersion: opentelemetry.io/v1alpha1
kind: Instrumentation
metadata:
name: java-instrumentation
name: swo-apm-instrumentation
spec:
java:
image: ghcr.io/solarwinds/autoinstrumentation-java:2.9.0
env:
- name: SW_APM_SERVICE_KEY
valueFrom:
Expand Down
20 changes: 19 additions & 1 deletion deploy/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -797,10 +797,28 @@ operator:
# it is not yet supported to run collector instrumented by operator
# filling this to satisfy subchart requirement
repository: "solarwinds/swi-opentelemetry-collector"
autoInstrumentationImage:
# Currently only Java is supported, other languages are TBD
java:
repository: "ghcr.io/solarwinds/autoinstrumentation-java"
tag: "2.9.0"
nodejs:
repository: ""
tag: ""
python:
repository: ""
tag: ""
dotnet:
repository: ""
tag: ""
go:
repository: ""
tag: ""

admissionWebhooks:
certManager:
enabled: true
# ensure that Certificate and Issuer resource are created after CRD's of all dependencies
# ensure that Certificate and Issuer resource are created after CRD's of cert-manager
certificateAnnotations:
"helm.sh/hook": post-install,post-upgrade
"helm.sh/hook-weight": "1"
Expand Down
Loading