一键导入
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