What problem does it solve? Packaging Kubernetes applications for repeatable, multi-environment deployments requires correctly structuring Helm charts, writing Go templates, managing dependencies, and validating output—tasks that are error-prone when done manually. ## Core Features & Use Cases - Chart Scaffolding: Step-by-step guidance for Chart.yaml metadata, values.yaml hierarchy, template helpers, and standard directory structure. - Validation & Testing: A bundled script lints charts, renders templates, performs dry-run installs, and checks security best practices like non-root users and resource limits. - Multi-Environment & Distribution: Patterns for environment-specific values files, dependency management, hooks, tests, and packaging charts into a repository. - Use Case: You need to ship a web application to dev, staging, and production clusters. Use this Skill to scaffold the chart, define per-environment values files, validate with the included script, and package it for a Helm repository. ## Quick Start Create a production-ready Helm chart for my web application with deployment, service, ingress, and autoscaling templates, then validate it.