Hi all - I'm trying to update our helm deployment ...
# all-things-deployment
p
Hi all - I'm trying to update our helm deployment to the latest release so everyone can checkout the new UI. I ran the below commands but am still not seeing the UI updated:
Copy code
helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "datahub" chart repository
Update Complete. ⎈Happy Helming!⎈
Copy code
helm upgrade datahub datahub/datahub --namespace=datahub --values values.yaml
W1124 09:17:37.881889   30156 warnings.go:70] batch/v1beta1 CronJob is deprecated in v1.21+, unavailable in v1.25+; use batch/v1 CronJob
W1124 09:17:38.022348   30156 warnings.go:70] batch/v1beta1 CronJob is deprecated in v1.21+, unavailable in v1.25+; use batch/v1 CronJob
W1124 09:17:38.200681   30156 warnings.go:70] batch/v1beta1 CronJob is deprecated in v1.21+, unavailable in v1.25+; use batch/v1 CronJob
W1124 09:17:38.365292   30156 warnings.go:70] batch/v1beta1 CronJob is deprecated in v1.21+, unavailable in v1.25+; use batch/v1 CronJob
W1124 09:17:38.505592   30156 warnings.go:70] batch/v1beta1 CronJob is deprecated in v1.21+, unavailable in v1.25+; use batch/v1 CronJob
W1124 09:17:38.675228   30156 warnings.go:70] batch/v1beta1 CronJob is deprecated in v1.21+, unavailable in v1.25+; use batch/v1 CronJob
Release "datahub" has been upgraded. Happy Helming!
NAME: datahub
LAST DEPLOYED: Wed Nov 24 09:15:46 2021
NAMESPACE: datahub
STATUS: deployed
REVISION: 4
Are there any further steps that need to be taken? Thanks!
e
This should be good enough. Can you see what version of the image you are on when you describe frontend or gms pod?
p
Huh, looks like its still running the old image: linkedin/datahub-frontend-react:v0.8.16
e
Can you try running
helm dep update
?
p
Sure, rerunning now
No luck still, I reran the upgrade command after running the above and am still seeing the old image version deployed
e
Can you try running
helm search repo datahub --versions
or just
helm search repo datahub
wondering if you see this line
datahub/datahub              	0.2.30       	0.8.17     	A Helm chart for LinkedIn DataHub
p
yep i do see that:
datahub/datahub              	0.2.30       	0.8.17     	A Helm chart for LinkedIn DataHub
e
are you explicitly setting tag in your custom values.yaml file by any chance?
if so, it will just use that tag, instead of the default one we set in the chart!
p
oh snap, that's probably it
yep... wow sorry about that! thanks for the help
e
NW!
we also updated some of the repos as well
so might be good to jsut delete all the image information
from your custom values.yaml so you get the latest changes!