Using Helm to Manage Charts

The helm tool has several commands for working with charts.

It can create a new chart for you:

  1. $ helm create mychart
  2. Created mychart/

Once you have edited a chart, helm can package it into a chart archivefor you:

  1. $ helm package mychart
  2. Archived mychart-0.1.-.tgz

You can also use helm to help you find issues with your chart’sformatting or information:

  1. $ helm lint mychart
  2. No issues found