Implementation Guide
Airbyte Self-Managed is in an early access stage for select priority users. Once you are qualified for an Airbyte Self Managed license key, you can deploy Airbyte with the following instructions.
Airbyte Self Managed must be deployed using Kubernetes. This is to enable Airbyte's best performance and scale. The core components (api server, scheduler, etc) run as deployments while the scheduler launches connector-related pods on different nodes.
Prerequisites
There are three prerequisites to deploying Self-Managed: installing helm, a Kubernetes cluster, and having configured kubectl
to connect to the cluster.
For production, we recommend deploying to EKS, GKE or AKS. If you are doing some local testing, follow the cluster setup instructions outlined here.
To install kubectl
, please follow these instructions. To configure kubectl
to connect to your cluster by using kubectl use-context my-cluster-name
, see the following:
Configure kubectl to connect to your cluster
Deploy Airbyte Self-Managed
Add Airbyte Helm Repository
Follow these instructions to add the Airbyte helm repository:
- Run
helm repo add airbyte https://airbytehq.github.io/helm-charts
, whereairbyte
is the name of the repository that will be indexed locally. - Perform the repo indexing process, and ensure your helm repository is up-to-date by running
helm repo update
. - You can then browse all charts uploaded to your repository by running
helm search repo airbyte
.
Clone & Configure Airbyte
git clone
the latest revision of the airbyte-platform repositoryCreate a new
airbyte.yml
file in theconfigs
directory of theairbyte-platform
folder. You may also copyairbyte.sample.yml
to use as a template:
cp configs/airbyte.sample.yml configs/airbyte.yml
Add your Airbyte Enterprise license key to your
airbyte.yml
.Add your auth details to your
airbyte.yml
. Auth configurations aren't easy to modify after Airbyte is installed, so please double check them to make sure they're accurate before proceeding.
Configuring auth in your airbyte.yml file
Install Airbyte Self Managed
Install Airbyte Enterprise on helm using the following command:
./tools/bin/install_airbyte_pro_on_helm.sh
The default release name is airbyte-pro
. You can change this via the RELEASE_NAME
environment
variable.
Customizing your Airbyte Self Managed Deployment
In order to customize your deployment, you need to create values.yaml
file in a local folder and populate it with default configuration override values. A values.yaml
example can be located in charts/airbyte folder of the Airbyte repository.
After specifying your own configuration, run the following command:
./tools/bin/install_airbyte_pro_on_helm.sh --values path/to/values.yaml $RELEASE_NAME airbyte/airbyte