Skip to content
Merged
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
4 changes: 2 additions & 2 deletions incubator/opentelemetry-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: tencent-opentelemetry-operator
version: 0.91.0
version: 0.91.1
description: OpenTelemetry Operator Helm chart for Kubernetes
type: application
home: https://opentelemetry.io/
Expand All @@ -9,5 +9,5 @@ sources:
maintainers:
- name: erichchen
icon: https://cloudcache.tencent-cloud.com/qcloud/ui/static/Industry_tke/80444e53-c142-4896-bc8a-ef4ecf75c682.png
appVersion: 0.91.0
appVersion: 0.91.1
kubeVersion: '>= 1.19.0-0'
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
namespace: opentelemetry-operator-system
spec:
exporter:
endpoint: {{printf "%s:4317" (include "opentelemetry-operator.host" . ) | quote | trim}}
endpoint: {{.Values.env.ENDPOINT | quote | trim}}
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

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

The endpoint configuration now references .Values.env.ENDPOINT but this value is not defined in the provided values.yaml file. This will cause template rendering failures unless the environment variable is properly configured.

Suggested change
endpoint: {{.Values.env.ENDPOINT | quote | trim}}
endpoint: {{ .Values.env.ENDPOINT | default "" | quote | trim }}

Copilot uses AI. Check for mistakes.
propagators:
- tracecontext
- baggage
Expand All @@ -21,11 +21,11 @@ spec:
image:
env:
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: {{printf "%s:55681" (include "opentelemetry-operator.host" . ) | quote | trim}}
value: {{printf "%s:90/otlp" (include "opentelemetry-operator.host" . ) | quote | trim}}
dotnet:
image:
env:
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: {{printf "%s:55681" (include "opentelemetry-operator.host" . ) | quote | trim}}
value: {{printf "%s:90/otlp" (include "opentelemetry-operator.host" . ) | quote | trim}}
go:
image: ccr.ccs.tencentyun.com/tapm/autoinstrumentation-go:v0.8.0-alpha
2 changes: 1 addition & 1 deletion incubator/opentelemetry-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pdb:
manager:
image:
repository: ccr.ccs.tencentyun.com/tke-market/opentelemetry-operator
tag: 20250714-1608_apm_0.90.1_auto_6dc87fa2
tag: 20250912-1437_apm_0.91.0_auto_f5c0be5f
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

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

The image tag shows version 0.91.0 but the chart is being updated to 0.91.1. This version mismatch could cause confusion about which actual operator version is being deployed.

Suggested change
tag: 20250912-1437_apm_0.91.0_auto_f5c0be5f
tag: 20250912-1437_apm_0.91.1_auto_f5c0be5f

Copilot uses AI. Check for mistakes.
collectorImage:
repository: ccr.ccs.tencentyun.com/tke-market/opentelemetry-collector-contrib
tag: 0.85.0
Expand Down