fix(analytics): re-trigger chart publish for the unified-metrics image - #1684
Merged
Conversation
The unified-metrics merge built and pushed the insight-analytics image, but publish-chart was skipped on that run because the same merge also triggered a descriptor-bump commit (publish-chart guards on bump-descriptors.committed != true). The follow-up run that published the umbrella saw only descriptor changes, so the analytics appVersion bump was never applied and the release kept referencing the pre-merge image. This change is scoped to the analytics subchart with no descriptor change, so changes.analytics is true and publish-chart runs: the pipeline rebuilds the image, bumps the subchart appVersion to the fresh tag, and republishes the umbrella. appVersion itself is left for the pipeline to own. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Aleksandr Barkhatov <pm@aleks.bar>
ktursunov
approved these changes
Jul 8, 2026
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughAdded two explanatory comment lines to the analytics service Helm Chart.yaml documenting that the appVersion field is managed by the release pipeline and automatically updated to match the built image tag on relevant merges. ChangesChart Documentation Update
Estimated code review effort: 1 (Trivial) | ~2 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
What
Re-triggers the umbrella chart publish so the release references the analytics image built for the unified-metrics merge (#1656).
Why
That merge built and pushed the
insight-analyticsimage, butpublish-chartwas skipped on the merge run because the same merge also triggered a descriptor-bump commit (publish-chartguards onbump-descriptors.committed != 'true'). The follow-up run that published the umbrella saw only descriptor changes, sochanges.analyticswas false and the analyticsappVersionbump was never applied — the release kept referencing the pre-merge image.This is a general release-pipeline defect (any backend service + descriptor change in one merge); tracked separately. This PR is the immediate recovery.
How
A doc comment on the analytics subchart
Chart.yaml— a change scoped tosrc/backend/services/analytics/**with no descriptor change. On merge to main,changes.analyticsis true and no descriptor commit intervenes, sopublish-chartruns: rebuilds the image, bumps the subchart appVersion to the fresh tag, and republishes the umbrella.appVersionis left for the pipeline to own.🤖 Generated with Claude Code
Summary by CodeRabbit