Airbyte
Airbyte is an open-source, data-integration platform that extracts data from various sources, loads the data into the target system, and then transforms the data into the appropriate format, a process otherwise known as Extract, Load, and Transform (ELT).
To install Airbyte, follow these steps:
Add the Airbyte repository to your local Helm configuration by running these Helm commands:
helm repo add airbyte https://airbytehq.github.io/helm-charts helm repo update helm search repo airbyte
Install Airbyte by running this Helm command:
helm -n aizen-infra upgrade aizen-airbyte airbyte/airbyte --version 0.43.29
Create the configuration file,
airbyte-ingress.yaml
, by running this command:kubectl create -f airbyte-ingress.yaml
If the storage class is not picked up correctly, mark one of the storage classes as the default by running these commands:
kubectl get sc kubectl patch storageclass <your storage class name> -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}'
Last updated