Create a Chart

Helm charts have a structure similar to:

/eksdemo
  /Chart.yaml  # a description of the chart
  /values.yaml # defaults, may be overridden during install or upgrade
  /charts/ # May contain subcharts
  /templates/ # the template files themselves
  ...

We’ll follow this template, and create a new chart called eksdemo with the following commands:

cd ~/environment
helm create eksdemo