deploy/helm/Publish-helm-chart.md
Create S3 bucket for Helm chart (naming as helm.appsmith.com - Hosting S3 as Static web requires bucket name be the same with the domain)
Clone your Helm charts (ignore if already have Appsmith repo on machine)
Build Helm chart dependencies
helm repo add bitnami https://charts.bitnami.com/bitnami
helm dependency build ./deploy/helm
helm package ./deploy/helm
aws s3 cp ./appsmith-1.4.1.tgz s3://helm.appsmith.com/
helm repo index . --url https://helm.appsmith.com
index.yaml to S3 bucketaws s3 cp ./index.yaml s3://helm.appsmith.com
index.yml file was created in the S3 bucketaws s3 ls s3://helm.appsmith.com
https://helm.appsmith.com)helm repo add appsmith http://helm.appsmith.com
helm search repo appsmith --versions
helm install appsmith appsmith/appsmith --version 1.4.1
Modify the chart
Change working directory
cd /deploy/helm
helm repo add bitnami https://charts.bitnami.com/bitnami
helm dependency build .
helm repo add appsmith http://helm.appsmith.com
helm update
helm search repo appsmith
Update current iteration of helm chart version by editing Chart.yaml
Package Helm chart
helm package .
aws s3 cp ./appsmith-<version>.tgz s3://helm.appsmith.com
curl http://helm.appsmith.com -o index.yaml
helm repo index --url http://helm.appsmith.com --merge index.yaml
index.yaml file into S3 bucketaws s3 cp index.yaml s3://helm.appsmith.com
helm repo update
helm search repo appsmith
helm repo add appsmith http://helm.appsmith.com
helm repo update
helm install appsmith appsmith/appsmith