I've upgraded to helm chart version 1.0.0 but app ...
# ask-ai
t
I've upgraded to helm chart version 1.0.0 but app version still shows up as 0.63.14 in the UI. Airbyte server shows up as Image: airbyte/server:1.0.0 though.
u
The AppVersion in the Helm chart corresponds to the Airbyte platform release version. It seems like there might be a discrepancy between the Helm chart version and the Airbyte platform version you are seeing in the UI. You can specify the Airbyte version explicitly while using Helm charts for installing Airbyte. This can be done by setting the version in the values in the following manner:
Copy code
yaml version: "0.63.14" global:   image:     tag: "0.63.14"
Alternatively, you can override the
env_vars
and specify the version you want to use. You can change the global setting and impact all services or send the
env_vars
to a single service.
Copy code
yaml env_vars:    AIRBYTE_VERSION: 0.63.14
Please refer to the [official discussion](https://github.com/airbytehq/airbyte/discussions/32349) on how to specify the Airbyte Version in the Helm Chart for more details. If the issue persists, it might be a good idea to raise an issue on the [Airbyte Github page](https://github.com/airbytehq/airbyte/issues) for further assistance.