[CPCAP-4657] - Feat: Release automation - #229
Open
pranavcracker wants to merge 6 commits into
Open
Conversation
theboringstuff
approved these changes
Aug 13, 2026
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
Adopts ci-tools' native GitHub↔GitLab release-automation pattern
Changes
Chart field-shape change (⚠️ breaking)
imagechanged from an object (repository/pullPolicy/tag) to a combined string (image: repo:tag),imagePullPolicypromoted to a sibling key. Required becausecharts-values-update-action's version-bump does a plain-textrepo:tagmatch and can't resolve a tag split across two keys.templates/deployment.yaml,values.schema.json,installation.md,ci/cloud-tests/cluster.yaml.New workflow structure
helm-charts-release.yamlrewritten workflow:check-tag→load-docker-build-components→docker-check-build→chart-release(bakes version, packages chart) →docker-build→github-release.publish_releaseinput (defaulttrue) —github-releaserunsif: inputs.publish_release, so a manual test dispatch can explicitly opt out of creating a real GitHub Release by unchecking it.Chart.yamlneeds valid SemVer, Docker tags don't, so test values liketest-verify1become0.0.0-test-verify1for the chart only..qubership/helm-charts-release-config.yaml,.qubership/docker-build-config.cfg.publish.yaml→push.yml: every branch push now builds+publishes all 6 images tagged with the sanitized branch name, plus stale-version cleanup.build.yamlremoved — fully subsumed bypush.yml.Breaking change⚠️
Existing
values.yamloverrides usingimage.repository/image.tag/image.pullPolicyneed to migrate toimage: <repo>:<tag>/imagePullPolicy: <policy>.