Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions charts/opentelemetry-collector/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## OpenTelemetry Collector

## v0.115.29 / 2025-06-13
- [Fix] Fix `command` template helper when using the Supervisor preset.
## v0.115.28 / 2025-06-12
- [Fix] Fix `image` template helper when using the Supervisor preset and when using the Collector CRDs.
## v0.115.27 / 2025-06-11
Expand Down
2 changes: 1 addition & 1 deletion charts/opentelemetry-collector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: opentelemetry-collector
version: 0.115.28
version: 0.115.29
description: OpenTelemetry Collector Helm chart for Kubernetes
type: application
home: https://opentelemetry.io/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ global:
image:
tag: 0.128.0

command:
name: opampsupervisor

mode: daemonset
extraVolumes:
- name: etcmachineid
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,16 @@ Determine the container image to use based on presets and user overrides.
Determine the command to use based on platform and configuration.
*/}}
{{- define "opentelemetry-collector.command" -}}
{{- $executable := printf "/%s" .Values.command.name -}}
{{- $executable := "/otelcol-contrib" -}}
{{- $configPath := "/conf/relay.yaml" -}}
{{- $configArg := "" -}}
{{- /* Step 1: If on Windows, the executable path is different */ -}}
{{- if .Values.isWindows -}}
{{- $executable = "C:\\otelcol-contrib.exe" | quote -}}
{{- end -}}
{{- if (and (.Values.presets.fleetManagement.enabled) (.Values.presets.fleetManagement.supervisor.enabled)) -}}
{{- $executable = "/opampsupervisor" }}
{{- end -}}
{{- /* Step 2: Determine config path and argument based on configuration */ -}}
{{- if .Values.configMap.create -}}
{{- if .Values.isWindows -}}
Expand Down
2 changes: 1 addition & 1 deletion charts/opentelemetry-collector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ imagePullSecrets: []

# OpenTelemetry Collector executable
command:
name: otelcol-contrib
name: ""
extraArgs: []

serviceAccount:
Expand Down
Loading