0PricingLogin
Helm Academy · Lesson

Generate a Skeleton with helm create

Bootstrapping a conventional chart layout.

Start From a Template

You rarely build a chart from nothing. The helm create command scaffolds a complete, working chart you can edit. 🚀

helm create mychart

What the Command Makes

It builds a new directory named after your chart, filled with conventional files and folders ready to install.

mychart/
  Chart.yaml
  values.yaml
  templates/
  charts/

All lessons in this course

  1. Generate a Skeleton with helm create
  2. Chart.yaml: Metadata and Versions
  3. The templates Directory and NOTES.txt
  4. Default values.yaml and the _helpers File
← Back to Helm Academy