What problem does it solve? Packaging Kubernetes applications for repeatable, versioned deployment is error-prone when done with raw YAML. This Skill produces a complete Helm chart with environment-agnostic defaults, production-hardened templates, and a tested upgrade and rollback workflow. ## Core Features & Use Cases - Full Chart Scaffold: Generates Chart.yaml, values.yaml, and templates for deployment, service, ingress, configmap, HPA, PDB, and service account. - Reusable Named Templates: Provides _helpers.tpl with standard labels, selectors, fullname, and image reference helpers following Helm conventions. - Production Safety Defaults: Enforces resource limits, read-only root filesystem, non-root execution, pod anti-affinity, PodDisruptionBudget, and zero-downtime rolling updates. - Lifecycle Operations: Covers linting, dry-run rendering, install, upgrade, rollback, history, and helm test hooks. - Use Case: You need to deploy a new microservice to staging and production. Use this Skill to generate a chart with per-environment values files, then run helm lint, helm template, and helm upgrade --wait in CI. ## Quick Start Ask the AI to create a Helm chart for your application with staging and production values files, autoscaling, and a health-check test pod.