Hi, I have updated datahub (v0.8.24 -> 0.8.41) ...
# all-things-deployment
a
Hi, I have updated datahub (v0.8.24 -> 0.8.41) using
helm upgrade datahub datahub/datahub
Helm version changed, new pod has been created, but the version on web frontend didn’t changed. Where did I miss something? Please, help

https://datahubspace.slack.com/files/U0312471YJY/F03REQK1H9P/image.png

https://datahubspace.slack.com/files/U0312471YJY/F03REQT5JFK/image.png

s
Please wait for all the pods to be healthy. It takes some time for all pods to come up.
a
@square-activity-64562 Hi, all the pods are ready
Copy code
kubectl get pod
NAME                                                READY   STATUS      RESTARTS   AGE
datahub-acryl-datahub-actions-578fd684f6-m5bkm      1/1     Running     0          40m
datahub-datahub-frontend-7b8d6cb6f-6hp5x            1/1     Running     0          40m
datahub-datahub-gms-6ddcc84cf9-zh9kl                1/1     Running     0          40m
datahub-datahub-upgrade-job-grgxz                   0/1     Completed   0          40m
datahub-elasticsearch-setup-job-84ddp               0/1     Completed   0          41m
datahub-kafka-setup-job-wzlt2                       0/1     Completed   0          41m
datahub-mysql-setup-job-qp8t5                       0/1     Completed   0          40m
prerequisites-cp-schema-registry-7f977548c9-94s2z   2/2     Running     0          52m
s
Did you refresh the browser page once?
a
Of course 😄
s
Maybe try opening it in incognito tab? Maybe there is some browser cache going on
Are you using a values.yaml file? Can you check that? Maybe you added the version in that values.yaml explicitly?
a
I used values file only for initial installation, but for upgrade I didn’t use it. I wonder, what If I made wrong update? I just did like was described in this thread https://datahubspace.slack.com/archives/CV2UVAPPG/p1640250918415500?thread_ts=1640245216.415200&cid=CV2UVAPPG
I’m just run
helm upgrade datahub datahub/datahub
and there was no value file in the current directory during startup
helm upgrade datahub datahub/datahub
s
can you try to do kubectl describe the frontend deployment? That should show the version it is supposed to be running
a
Image: linkedin/datahub-frontend-react:v0.8.24
s
That is the problem. You need to use the values.yaml file to update with updated image tag
a
the value file I used for the initial deployment is different from the current value file in the github datahub repository, should I use the new value file from the repository?
s
Did you make any changes in initial values file? If yes, you need to see the diff and make changes accordingly
a
I found one thing in new values file
Copy code
#it was in initioal values file:
datahub-ingestion-cron:
  enabled: false
  image:
    repository: acryldata/datahub-ingestion
    tag: "v0.8.41"

datahub:
#it's new thing in current values file:
managed_ingestion:
  enabled: true
  defaultCliVersion: "0.8.41"
was datahub-ingestion-cron replaced with manage_ingestion in the new version?