Skip to content
Closed
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
8 changes: 8 additions & 0 deletions charts/opentelemetry-collector/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## OpenTelemetry Collector

### v0.131.1 / 2026-04-30

- [Fix] Keep the `opentelemetry-collector-ebpf-profiler` distribution on image tag `0.147.0` by default when the `ebpfProfiler` preset is enabled, while allowing `image.tag` overrides.

### v0.131.0 / 2026-04-30

- [Feat] Bump OpenTelemetry Collector image to v0.151.0.

### v0.130.18 / 2026-04-30

- [Fix] Exclude `BOOKMARK` and `ERROR` watch event types from the `k8sobjects/resource_catalog` watch receivers used by the Kubernetes resource catalog presets, reducing non-actionable watch stream noise while preserving normal watch recovery behavior.
Expand Down
4 changes: 2 additions & 2 deletions 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.130.18
version: 0.131.1
description: OpenTelemetry Collector Helm chart for Kubernetes
type: application
home: https://opentelemetry.io/
Expand All @@ -12,4 +12,4 @@ sources:
icon: https://opentelemetry.io/img/logos/opentelemetry-logo-nav.png
maintainers:
- name: povilasv
appVersion: 0.147.0
appVersion: 0.151.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Regenerate rendered examples after appVersion bump

Bumping appVersion to 0.151.0 without updating charts/opentelemetry-collector/examples/**/rendered leaves the checked-in manifests on the old 0.147.0 image, so CI paths that apply rendered examples are no longer validating the version shipped by this chart change. I verified this by checking .github/workflows/collector-test.yaml and .github/workflows/ebpf-test.yaml, which run kubectl apply -f ./charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered, while that rendered manifest still references opentelemetry-collector-contrib:0.147.0.

Useful? React with 👍 / 👎.

3 changes: 3 additions & 0 deletions charts/opentelemetry-collector/templates/_custom_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ Determine the container image to use based on presets and user overrides.
{{- define "opentelemetry-collector.image" }}
{{- $imageRepository := "ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib" }}
{{- $imageTag := .Chart.AppVersion }}
{{- if .Values.presets.ebpfProfiler.enabled }}
{{- $imageTag = "0.147.0" }}
{{- end }}
{{- if (and (.Values.presets.ebpfProfiler.enabled) (.Values.presets.fleetManagement.enabled) (.Values.presets.fleetManagement.supervisor.enabled) (not .Values.collectorCRD.generate)) }}
{{- $imageRepository = "cgx.jfrog.io/coralogix-docker-images/coralogix-otel-supervised-ebpf-profiler" }}
{{- else if (and (.Values.presets.fleetManagement.enabled) (.Values.presets.fleetManagement.supervisor.enabled) (not .Values.collectorCRD.generate)) }}
Expand Down
Loading