Release process¶
This page summarizes the maintainer workflow. It mirrors the repository’s RELEASE.md—read that file for authoritative, step-by-step detail.
Versioning¶
CruiseKube follows Semantic Versioning:
- MAJOR — incompatible API or behavior changes.
- MINOR — backward-compatible functionality.
- PATCH — backward-compatible fixes.
Preparing a stable release¶
- Bump chart metadata in
charts/cruisekube/Chart.yaml—versionandappVersion. - Pin images in
charts/cruisekube/values.yaml(cruisekubeController,cruisekubeWebhook,cruisekubeFrontendtags). Prefer immutable digests/tags for production. - Update
CHANGELOG.md— move items fromUnreleasedinto## vX.Y.Z (YYYY-MM-DD). - Open a PR to
main, review, and merge.
Publishing¶
- Create a GitHub Release with tag
vX.Y.Zand human-readable notes (highlights, breaking changes, links to docs). - CI (
.github/workflows/release.yaml) packages the Helm chart and pushes it to JFrog Artifactory (oci://tfy.jfrog.io/tfy-helm/cruisekube).
Rollback / hotfix¶
- Critical regressions: cut a patch release with fixes; consider marking the bad release in GitHub.
- Operators:
helm rollbackor reinstall the previous chart version with pinned image tags.
Contributors¶
Every merged change should append a line under CHANGELOG.md → Unreleased—see Contributors and CONTRIBUTING.md.