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::
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.
#### 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
helm delete my-app