<@U04S8PLJWMT> How do i update airbyte oss when ru...
# ask-ai
p
@kapa.ai How do i update airbyte oss when running using abctl
k
To update Airbyte OSS when running using abctl, you can follow these steps: 1. First, ensure you have the latest version of abctl installed. You can update abctl by running:
Copy code
curl -LsfS <https://get.airbyte.com> | bash -
2. Once you have the latest abctl, you can update Airbyte by running the following command:
Copy code
abctl local install
This command will upgrade your Airbyte installation to the latest version available. It's important to note that abctl is designed to install or upgrade to the latest version of Airbyte. If you need to install a specific version, you would need to use a custom
values.yaml
file:
Copy code
abctl local install --values ./values.yaml
In the values file, you can specify the Airbyte Platform version you want to use. For more detailed information on upgrading Airbyte with abctl, you can refer to the [Upgrading Airbyte documentation](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-with-abctl). Remember that when upgrading, Airbyte will attempt to upgrade some connector versions automatically, but used connectors will not be upgraded to avoid disrupting working workflows. You can manually upgrade specific connectors in the settings page of the webapp if needed.