fix: align otel-collector image tag with chart appVersion#220
Open
ChrsMark wants to merge 1 commit into
Open
Conversation
The otel-collector image tag was hardcoded at 2.19.0 while the chart appVersion is 2.27.0. The 2.27.0 app pushes an OpAMP config containing a `json:` key in the ClickHouse exporter, which the 2.19.0 collector binary rejects with: 'clickhouseexporter.Config' has invalid keys: json This causes an immediate CrashLoopBackOff on my-clickstack-otel-collector, making port 4318 unavailable to any downstream collectors. Fixes ClickHouse#219
|
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.
Problem
The
clickstackchart 3.0.0 shipsappVersion: 2.27.0but pins theotel-collector image at
tag: "2.19.0"invalues.yaml. The 2.27.0app pushes an OpAMP config to the collector containing a
json:key inthe ClickHouse exporter, which the 2.19.0 binary rejects:
'clickhouseexporter.Config' has invalid keys: jsonThis causes an immediate
CrashLoopBackOffonmy-clickstack-otel-collector,making port 4318 unavailable to any downstream collectors.
Related: #219
Changes
charts/clickstack/values.yaml: bumpotel-collector.image.tagfrom2.19.0to2.27.0to matchappVersion.github/workflows/update-app-version.yml: add a step that updates the image tag invalues.yamlalongsideChart.yamlon every future version bump, preventing this drift from recurring