how to upgrade airbyte from 0.44.5 to 1.1 version
# ask-ai
f
how to upgrade airbyte from 0.44.5 to 1.1 version
u
To upgrade Airbyte from version 0.44.5 to 1.1, you'll need to follow the upgrade process for your specific deployment method. Based on the information provided, I'll outline the steps for upgrading Airbyte on Kubernetes using Helm, which is the recommended method for production setups. Here's how you can upgrade Airbyte: 1. First, update your Helm repository to get the latest charts:
Copy code
bash helm repo update
2. Check the current version of your Airbyte deployment:
Copy code
bash helm list -n <NAMESPACE>
3. Visit the [Airbyte ArtifactHub](https://artifacthub.io/packages/helm/airbyte/airbyte) to review the changes between your current version and the target version (1.1). 4. Update your
values.yaml
file if necessary, based on any changes in the new version. 5. Upgrade the Helm app by running:
Copy code
bash helm upgrade --install <RELEASE-NAME> airbyte/airbyte --values <VALUE.YAML> --version <HELM-APP-VERSION>
Replace
<RELEASE-NAME>
with your current release name,
<VALUE.YAML>
with the path to your values file, and
<HELM-APP-VERSION>
with the version corresponding to Airbyte 1.1. [Upgrading on K8s using Helm](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-k8s-using-helm) After the upgrade, it may take 2-5 minutes for the process to complete. Once finished, Helm will provide instructions on how to port-forward Airbyte, allowing you to access the updated instance. Remember to review any major version changes between 0.44.5 and 1.1, as there might be breaking changes or new features that require your attention. You may need to refresh schemas or reset data for affected connections after the upgrade. If you encounter any issues or need more specific guidance, please consult the Airbyte documentation or reach out to their support team.