File tree Expand file tree Collapse file tree
charts/opentelemetry-collector
examples/daemonset-supervisor Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## OpenTelemetry Collector
44
5+ ## v0.115.29 / 2025-06-13
6+ - [ Fix] Fix ` command ` template helper when using the Supervisor preset.
57## v0.115.28 / 2025-06-12
68- [ Fix] Fix ` image ` template helper when using the Supervisor preset and when using the Collector CRDs.
79## v0.115.27 / 2025-06-11
Original file line number Diff line number Diff line change 11apiVersion : v2
22name : opentelemetry-collector
3- version : 0.115.28
3+ version : 0.115.29
44description : OpenTelemetry Collector Helm chart for Kubernetes
55type : application
66home : https://opentelemetry.io/
Original file line number Diff line number Diff line change 88image :
99 tag : 0.128.0
1010
11- command :
12- name : opampsupervisor
13-
1411mode : daemonset
1512extraVolumes :
1613 - name : etcmachineid
Original file line number Diff line number Diff line change @@ -61,13 +61,16 @@ Determine the container image to use based on presets and user overrides.
6161Determine the command to use based on platform and configuration.
6262*/ }}
6363{{- define " opentelemetry-collector.command" -}}
64- {{- $executable := printf " / %s " .Values.command.name -}}
64+ {{- $executable := " /otelcol-contrib " -}}
6565{{- $configPath := " /conf/relay.yaml" -}}
6666{{- $configArg := " " -}}
6767{{- /* Step 1: If on Windows, the executable path is different */ -}}
6868{{- if .Values.isWindows -}}
6969{{- $executable = " C:\\ otelcol-contrib.exe" | quote -}}
7070{{- end -}}
71+ {{- if (and (.Values.presets.fleetManagement.enabled ) (.Values.presets.fleetManagement.supervisor.enabled )) -}}
72+ {{- $executable = " /opampsupervisor" }}
73+ {{- end -}}
7174{{- /* Step 2: Determine config path and argument based on configuration */ -}}
7275{{- if .Values.configMap.create -}}
7376{{- if .Values.isWindows -}}
Original file line number Diff line number Diff line change @@ -534,7 +534,7 @@ imagePullSecrets: []
534534
535535# OpenTelemetry Collector executable
536536command :
537- name : otelcol-contrib
537+ name : " "
538538 extraArgs : []
539539
540540serviceAccount :
You can’t perform that action at this time.
0 commit comments