Helm charts
Create a folders on root repository folder
mkdir Charts
mkdir Packages
Access the Chart folder
cd Charts
helm create ${chart-name}
Access the root repository folder
cd ..
helm package Charts/${chart-name}
Access the root repository folder
mv ${chart-name}-0.1.0.tgz Packages/
Access the root repository folder
helm repo index .
Add helm repo
helm repo add demo-app https://${username}.github.io/${repository-name}
helm repo list