원클릭으로
release
Guide through creating a new kuberise.io release with release notes, changelog, version badge, GitHub release, and LinkedIn post
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guide through creating a new kuberise.io release with release notes, changelog, version badge, GitHub release, and LinkedIn post
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Walk through adding a new external Helm component to the kuberise platform
Scaffold a new local Helm chart and register it in the app-of-apps
Check for newer versions of external Helm charts referenced in the platform
Test kr CLI changes on a local k3d cluster
Scaffold a new blog post for the kuberise.io website
Create a changelog entry for the kuberise.io website from RELEASE_NOTES.md
| name | release |
| description | Guide through creating a new kuberise.io release with release notes, changelog, version badge, GitHub release, and LinkedIn post |
Guide the user through the full release process for kuberise.io. This touches both the platform repo and the website repo.
Ask the user for the new version number. Follow the format X.Y.Z (no 'v' prefix). Check the current version in RELEASE_NOTES.md to suggest the next logical version.
In RELEASE_NOTES.md:
Create a new file in the website repo at:
../https.kuberise.io/content/4.changelog/{N}.{major}-{minor}-{patch}.md
Where {N} is the next sequential number after existing entries. Check existing files to determine the next number.
Frontmatter format:
---
title: "{X.Y.Z} - {Short Title}"
description: "{One-sentence summary}"
date: "{YYYY-MM-DD}"
image: {unsplash URL or local image path}
---
Body content should be adapted from RELEASE_NOTES.md - convert the changelog format to prose-friendly Markdown suitable for the website. Use bold for section headers like **Added:**, **Changed:**, etc.
Update the version field in ../https.kuberise.io/app/app.config.ts:
export default defineAppConfig({
version: '{X.Y.Z}',
...
})
KR_VERSION in the kr scriptUpdate the KR_VERSION variable at the top of ../kuberise.io/scripts/kr:
KR_VERSION="{X.Y.Z}"
This version is displayed by kr version and must match the release.
Generate a PR title and body for the release branch. This is the main PR that merges all release changes into main.
PR title format:
Release {X.Y.Z}: {Short Title from RELEASE_NOTES}
PR body format:
## Release {X.Y.Z} - {Short Title}
{One-sentence summary from RELEASE_NOTES}
### Changes in this PR
- Updated `RELEASE_NOTES.md` with version {X.Y.Z}
- Created changelog entry `{N}.{major}-{minor}-{patch}.md`
- Updated version badge in `app.config.ts` to {X.Y.Z}
- Updated `KR_VERSION` in `scripts/kr` to {X.Y.Z}
### Release notes
{Copy the Added/Changed/Removed sections from RELEASE_NOTES.md}
Present the PR title and body to the user so they can use it when creating the PR.
Generate an annotated tag message for the release. The tag should be annotated (not lightweight) so it includes metadata.
Tag command:
git tag -a {X.Y.Z} -m "{Tag message}"
Tag message format:
Release {X.Y.Z}: {Short Title}
{2-3 sentence summary of the most important changes, derived from RELEASE_NOTES.md}
Present the full git tag command to the user.
Remind the user to push the tag and create a GitHub release.
IMPORTANT: The scripts/kr file MUST be attached as a release asset. Without it, the installer (curl -sSL https://kuberise.io/install | sh) will fail with a 404 error because it downloads kr from https://github.com/kuberise/kuberise.io/releases/download/{X.Y.Z}/kr.
git push origin {X.Y.Z}
gh release create {X.Y.Z} --title "{X.Y.Z} - {Short Title}" --notes-file <(sed -n '/## \[{X.Y.Z}\]/,/## \[/p' RELEASE_NOTES.md | head -n -1) scripts/kr
If the sed approach is too complex, generate the release notes content and present a simpler gh release create command with --notes inline.
If the release already exists but is missing the asset, use:
gh release upload {X.Y.Z} scripts/kr
After creating the release, verify the installer works:
curl -sSL https://kuberise.io/install | sh
Draft a LinkedIn post for the kuberise company page announcing the new release. The post should:
Present the draft to the user for review before posting. Do not post it automatically.
Present a checklist of everything that was done:
RELEASE_NOTES.md updated with new versionapp.config.tsKR_VERSION updated in scripts/krkr script attached