Hi! there are any upgrade guide for helm deployme...
# all-things-deployment
b
Hi! there are any upgrade guide for helm deployments? assuming I just want to upgrade one version? Thanks
p
Hey @billions-twilight-48559, if you deploy the DataHub with Helm through this link you can follow the instructions below.
Copy code
helm repo update # Grab the latest from the remote repository (<https://helm.datahubproject.io/>)
helm upgrade datahub datahub/datahub # Upgrades the datahub release to the latest version
b
thanks!
d
Hey! Thanks for the tutorial After update and upgrade, UI still shows previous version. Should I do sth else to make changes work?
a
@dazzling-queen-76396 Hi, did you find how to resolve this thing? I have the same issue - UI still shows previous version
d
Hi @ancient-apartment-23316! Sorry for the late reply was on vacay 🙂 Yes, I figured that out below are the steps I've done 1. clone the HELM repo from here datahub-helm or pull new changes 2. make sure that
datahub-helm/charts/datahub/values.yml
contains needed version in tag property 3.
helm repo update
4.
helm upgrade -f charts/datahub/values.yml datahub datahub/datahub
then when you open UI it'll show the error message or error popup, it's ok. you need just to wait a couple of minutes until all services restart
a
Hi @dazzling-queen-76396, thanks for your answer, hope your vacation was great, I checked the values file and the root cause was there, thanks! Are you installing datahub from local files? How did you install the prerequisites? Also from local files?
d
@ancient-apartment-23316 yes, so after I clone the repo and add extra envs to
values.yml
I run
Copy code
helm repo add datahub <https://helm.datahubproject.io/> 
helm install prerequisites datahub/datahub-prerequisites
and after that upgrading using concrete values.yml file like in point 4 in my previous message