Francisco García
10/28/2024, 9:54 PMuser
10/28/2024, 9:54 PMbash helm repo update
2. Check the current version of your Airbyte deployment: 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: 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.