charts

Welcome to the Helm Party! ๐ŸŽ‰

To use the charts provided, make sure youโ€™ve got your Helm on! ๐Ÿ›ก๏ธ Please refer to Helmโ€™s documentation to get started.

Once Helm has been set up correctly, follow these steps::

Step 1: Add the Magic Repo ๐Ÿช„

helm repo add grangdan https://sandeshgrangdan.github.io/charts

If you had already added this repo earlier, just run or update to make sure youโ€™re running with the latest:

helm repo update

You can then run helm search repo sandeshgrangdan to see the charts.

Step 2: Helm to Deploy Your App ๐Ÿš€

#### Option 1: Deploy with Default Values If youโ€™re cool with the default settings, simply run:

  helm install my-app grangdan/app \
  --set image.repository=nginx \
  --set image.tag=latest

#### Option 2: Deploy with Custom Values Want to tweak some settings? Customize your deployment by setting specific values:

  helm install my-app grangdan/app \
  -f my-values.yaml \
  --set image.repository=nginx \
  --set image.tag=latest

Step 3: Uninstall the Chart

helm delete my-app