<@U04SE163WC8> How do I upgrading to last version ...
# ask-ai
a
@kapa.ai How do I upgrading to last version on kubernetes? currently I'm running version 0.64.4
u
To upgrade Airbyte on Kubernetes, you can follow these steps: 1. Access the [Airbyte ArtifactHub](https://artifacthub.io/packages/helm/airbyte/airbyte) and select the version you want to upgrade to. 2. Click on
Default Values
and compare the value file between the new version and the version you're currently running. You can run
helm list -n <NAMESPACE>
to check the CHART version you're using. 3. Update your
values.yaml
file if necessary. 4. Upgrade the Helm app by running:
Copy code
bash helm upgrade --install <RELEASE-NAME> airbyte/airbyte --values <VALUE.YAML> --version <HELM-APP-VERSION>
After 2-5 minutes, Helm will print a message showing how to port-forward Airbyte. This may take longer on Kubernetes clusters with slow internet connections. In general the message is the following:
Copy code
bash export POD_NAME=$(kubectl get pods -l "<http://app.kubernetes.io/name=webapp|app.kubernetes.io/name=webapp>" -o jsonpath="{.items[0].metadata.name}")   export CONTAINER_PORT=$(kubectl get pod  $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")   echo "Visit <http://127.0.0.1:8080> to use your application"   kubectl  port-forward $POD_NAME 8080:$CONTAINER_PORT
Please note that the upgrade process might vary depending on your specific setup and configuration. Always make sure to backup your data before performing an upgrade. For more details, you can refer to the [official Airbyte documentation](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-k8s-using-helm).
a
@kapa.ai what is the latest version number?
u
A message from kapa.ai
u
Based on the provided knowledge sources, I don't have the information about the latest version of Airbyte. You can check the latest version of Airbyte on their [official GitHub page](https://github.com/airbytehq/airbyte) or [official website](https://airbyte.io/).
a
@kapa.ai it seems that documentation is not updated with the last version number
u
A message from kapa.ai
u
I understand your concern. The Airbyte team strives to keep their documentation as up-to-date as possible. However, there might be some delay between a new release and the corresponding documentation update. You can always check the latest version of Airbyte on their [official GitHub page](https://github.com/airbytehq/airbyte) or [official website](https://airbyte.io/). If you notice any discrepancies or outdated information, you can raise an issue on their [GitHub Issues page](https://github.com/airbytehq/airbyte/issues) to bring it to their attention. They welcome feedback and contributions from the community.