Creating Helm Charts
Learn how to create Helm charts and view YAML file contents.
We'll cover the following...
Creating a HELM chart
Helm uses a packaging format called charts. A chart is a collection of files that describe a related set of Kubernetes resources. Helm relies heavily on naming conventions, so charts are created as files laid out in a particular directory tree, and with some of the files using predefined names.
Charts can be packaged into versioned archives to be deployed. But that’s not our current focus. We’ll explore packaging later. For now, our goal is to create a ...