ワンクリックで
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 ページを確認してインストールできます。
SOC 職業分類に基づく
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
| 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