What problem does it solve? Managing Kubernetes application deployments with Helm involves many moving parts—chart structure, Go templating, values overrides, dependencies, and release lifecycles—and mistakes can break production deployments. This Skill provides structured guidance and canonical examples for every stage of Helm chart work. ## Core Features & Use Cases - Chart Authoring: Canonical Chart.yaml and values.yaml layouts, library charts, and standard directory structure. - Templating & Values: Go template helpers, Sprig functions, values override precedence, and values.schema.json validation. - Release Lifecycle: Install, upgrade, rollback, hooks, testing, debugging, and recovery of stuck releases. - Use Case: You need to deploy an application to Kubernetes with environment-specific configs. Use this Skill to author the chart, set up dev/staging/prod values files, and run atomic upgrades with automatic rollback on failure. ## Quick Start Ask the assistant to create a Helm chart for your application with a deployment, service, and environment-specific values files.