feat(helm): add OpenTelemetry export configuration - #17
Merged
Conversation
hibare
marked this pull request as ready for review
May 25, 2026 16:06
arber-salihi
approved these changes
May 26, 2026
arber-salihi
approved these changes
May 26, 2026
Co-authored-by: Arbër Salihi <112708134+arber-salihi@users.noreply.github.com> Signed-off-by: Shubham Hibare <20609766+hibare@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds chart-level support for the OpenTelemetry export pipeline introduced in #14. Operators can now enable OTLP/gRPC export via standard Helm values without
extraEnvworkarounds.Changes
values.yaml— addsconfig.otelblock (7 settings) withenabled: falsedefault; adds commented OTLP/gRPC egress example undernetworkPolicy.egress.configmap.yaml— renders theotel:section in the runtime config only whenotel.enabled=true. Disabled-state output is unchanged from before this PR.values.schema.json— type/range validation:sampleRateconstrained to[0.0, 1.0],protocolenum-locked to"grpc"to match what the Go validator accepts.helm lintcatches misconfigured values at install time.README.md— adds OpenTelemetry section under Production deployment and parameter table under Parameters.Example
Design notes
enabled: false— existing installs are unaffected; OTel must be explicitly opted into.endpoint: ""— intentionally diverges from the Go defaultlocalhost:4317so a misconfigured cluster fails fast at startup rather than silently dialing localhost.