원클릭으로
add-local-chart
Scaffold a new local Helm chart and register it in the app-of-apps
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Scaffold a new local Helm chart and register it in the app-of-apps
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
Walk through adding a new external Helm component to the kuberise platform
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
SOC 직업 분류 기준
| name | add-local-chart |
| description | Scaffold a new local Helm chart and register it in the app-of-apps |
Scaffold a new local Helm chart for a component that doesn't have an external chart repository.
Ask the user for:
my-dashboard)-config chart (operator + config pattern)helm (default), kustomize, or rawFor Helm type, create in charts/{chart-name}/:
charts/{chart-name}/
Chart.yaml
values.yaml
templates/
_helpers.tpl
(resource templates)
Chart.yaml should follow:
apiVersion: v2
name: {chart-name}
description: {description}
type: application
version: 0.1.0
appVersion: "0.1.0"
For kustomize type, create in charts/{chart-name}/:
charts/{chart-name}/
kustomization.yaml
(resource files)
Create values/defaults/platform/{chart-name}/values.yaml (even if empty).
Add under ArgocdApplications. Local charts don't need chart, repoURL, or targetRevision fields - they default to charts/{name} path.
{chart-name}:
enabled: false
Add type: kustomize or type: raw if not Helm. Add namespace only if it differs from the chart name.
Add to the relevant app-of-apps/values-{name}.yaml enabler file (e.g. values-webshop.yaml) with enabled: true.
_helpers.tpl for reusable template functionsglobal.domain and global.clusterName parameters where relevant