Open june-xu opened 9 months ago
first get the name of the helm release
helm list --namespace default --all
this gives me
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION retool-dev default 16 2024-03-08 13:51:43.046209 -0800 PST deployed retool-6.0.6
this tells me my helm release name is retool-dev
get the location of your values file. mine is ./retool/values_dev.yaml
put it all together! first go to the correct location
cd ~/Desktop/retool-helm/charts
helm upgrade --namespace default --install --values retool/values_dev.yaml --wait --timeout 13m0s retool-dev ./retool
first get the name of the helm release
this gives me
this tells me my helm release name is retool-dev
get the location of your values file. mine is ./retool/values_dev.yaml
put it all together! first go to the correct location