What is a Helm Subchart and How to Use It

What is a Helm Subchart and How to Use It When you start using Helm to manage applications in Kubernetes, you’ll quickly discover that not everything should live in a single chart. Sometimes, an application depends on other components — like a database, cache, or monitoring tool. This is where subcharts come into play. What is a Subchart? A subchart is simply another Helm chart that lives inside the charts/ directory of your main chart. It’s a way to define dependencies. For example, your app may need Redis. Instead of reinventing the wheel, you include the Redis Helm chart as a subchart. ...

October 2, 2025 · 2 min · 289 words · John Cena