Skip to content

Commit

Permalink
Fix default auto-instrumentation images (#842)
Browse files Browse the repository at this point in the history
Signed-off-by: Loren Brindze <[email protected]>
  • Loading branch information
goatsthatcode authored Apr 28, 2022
1 parent 2f80f65 commit 2541df2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ func addDependencies(_ context.Context, mgr ctrl.Manager, cfg config.Config, v v
u := &instrumentationupgrade.InstrumentationUpgrade{
Logger: ctrl.Log.WithName("instrumentation-upgrade"),
DefaultAutoInstJava: cfg.AutoInstrumentationJavaImage(),
DefaultAutoInstNodeJS: cfg.AutoInstrumentationJavaImage(),
DefaultAutoInstNodeJS: cfg.AutoInstrumentationNodeJSImage(),
DefaultAutoInstPython: cfg.AutoInstrumentationPythonImage(),
Client: mgr.GetClient(),
}
return u.ManagedInstances(c)
Expand Down

0 comments on commit 2541df2

Please sign in to comment.