Helm charts have a structure similar to:
/eksdemo ├── charts/ ├── Chart.yaml ├── templates/ │  ├── deployment.yaml │  ├── _helpers.tpl │  ├── hpa.yaml │  ├── ingress.yaml │  ├── NOTES.txt │  ├── serviceaccount.yaml │  ├── service.yaml │  └── tests │  └── test-connection.yaml └── values.yaml
We’ll follow this template, and create a new chart called eksdemo with the following commands:
cd ~/environment helm create eksdemo cd eksdemo