Help us improve
Share bugs, ideas, or general feedback.
From helm-chart-generator
Generates production-ready Helm 3 charts for Kubernetes apps with Chart.yaml, values.yaml, Go templates, helpers, health probes, security contexts, and multi-environment values overrides.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin helm-chart-generatorHow this skill is triggered — by the user, by Claude, or both
Slash command
/helm-chart-generator:generating-helm-chartsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate production-ready Helm 3 charts for Kubernetes applications with Chart.yaml, values.yaml, Go templates, and helper functions. Support multi-environment deployments with values overrides, dependency management, security contexts, health probes, and resource limits following Helm best practices.
Generates Helm charts with Chart.yaml, values.yaml, templates, and helpers for Kubernetes workloads like Deployments, StatefulSets, and DaemonSets.
Creates production-ready Helm charts for Kubernetes app deployments using templating, values management, dependencies, hooks, and testing. Use for repeatable deployments, multi-environment parameterization, and versioned rollbacks.
Guides creation, organization, and management of Helm charts for packaging and deploying Kubernetes applications. Useful for scaffolding charts, templating manifests, multi-environment deployments, and repositories.
Share bugs, ideas, or general feedback.
Generate production-ready Helm 3 charts for Kubernetes applications with Chart.yaml, values.yaml, Go templates, and helper functions. Support multi-environment deployments with values overrides, dependency management, security contexts, health probes, and resource limits following Helm best practices.
helm version)kubectl configured with cluster access for testing chart installationChart.yaml, values.yaml, templates/, charts/, .helmignoreChart.yaml with apiVersion: v2, name, version, appVersion, and dependency declarationsvalues.yaml with sensible production defaults: replica count, image config, resource limits, ingress settings.Values references and _helpers.tpl for reusable named templateslivenessProbe and readinessProbe in the deployment template with configurable paths and thresholdsrunAsNonRoot: true, readOnlyRootFilesystem: true, and drop all capabilitiesvalues-dev.yaml, values-staging.yaml, values-prod.yamlNOTES.txt with post-install instructions showing how to access the applicationhelm lint . and test rendering with helm template . --values values-prod.yamlChart.yaml with metadata and dependenciesvalues.yaml with documented, configurable defaultsdeployment.yaml, service.yaml, ingress.yaml, configmap.yaml, serviceaccount.yaml, hpa.yaml_helpers.tpl with name, label, and selector helper templatesNOTES.txt with post-install access instructions| Error | Cause | Solution |
|---|---|---|
Chart.yaml: version is required | Missing or malformed version field | Add a valid SemVer version string to Chart.yaml |
parse error in template | Go template syntax error (missing end, wrong function) | Run helm template . to pinpoint the error; check bracket matching and function names |
dependency not found | Chart dependency not downloaded | Run helm dependency update to fetch dependencies into charts/ |
release failed: timed out waiting for condition | Pods not reaching ready state during install | Check pod logs; verify image exists, resource limits are sufficient, and probes are correct |
values override not applied | Wrong values file path or key mismatch | Verify --values file path and that keys match the structure in values.yaml exactly |