Helm (Github, Docs) is a tool for managing Kubernetes packages called charts.
Helm can do the following:
- Create new charts from scratch
- Package charts into chart archive (tgz) files
- Interact with chart repositories where charts are stored
- Install and uninstall charts into an existing Kubernetes cluster
- Manage the release cycle of charts that have been installed with Helm
For Helm, there are three important concepts:
- The chartis a bundle of information necessary to create an instance of a Kubernetes application.
- The configcontains configuration information that can be merged into a packaged chart to create a releasable object.
- A releaseis a running instance of achart, combined with a specificconfig.