Kevin Phan
06/20/2023, 6:18 PM0.40.0-alpha using kustomize to using helm. For a different environment, we did a full delete and redeployed.kapa.ai
06/20/2023, 6:18 PMkapa.ai
06/20/2023, 6:20 PMdocker run --rm -v <path to directory containing downloaded airbyte_archive.tar.gz>:/config airbyte/migration:<version you are upgrading to> --\ --input /config/airbyte_archive.tar.gz\ --output <path to where migrated archive will be written (should end in .tar.gz)>\ [ --target-version <version you are migrating to or empty for latest> ] [source](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-k8s-%E2%80%8B-part-0) 3. Delete the existing Airbyte Kubernetes volumes after exporting your data (step 1). Be cautious as this command will delete your data in Kubernetes: # Careful, this is deleting data! kubectl delete -k kube/overlays/stable [source](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-k8s-%E2%80%8B-part-1) 4. Deploy Airbyte on Kubernetes using Helm following the instructions in the [documentation](https://docs.airbyte.com/deploying-airbyte/on-kubernetes-via-helm). 5. Import your migrated archive by navigating to the Admin page in the UI, going to the Configuration Tab, and clicking on Import. Upload your migrated archive. [source](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-k8s-%E2%80%8B-part-1) By following these steps, you can upgrade Airbyte while maintaining your configuration data, logs, and connection configs.Marcos Marx (Airbyte)
06/20/2023, 6:21 PM