Airbyte Installation in Kubernetes
Run 'helm repo add airbyte https://airbytehq.github.io/helm-charts' to add the helm repo.
Run 'kubectl create namespace airbyte' to create the namespace.
Create values.yaml using vi values.yaml and paste the below:
global:
jobs:
resources:
requests:
memory: 512Mi
cpu: 20m
limits:
cpu: 400m
memory: 1Gi
Install Airbyte using the command: helm install \
airbyte \
airbyte/airbyte \
--namespace airbyte \
--values ./values.yamlAfter Installing the airbyte run the command: kubectl -n airbyte port-forward deployment/airbyte-webapp 8085:8080 to access the Airbyte UI.
In chrome open 'http://ipaddress:8085', click the source and configure the source.
Click the destination and configure the Destination data source.
After adding the Source and Destination, click the new connection and select source and destination. After select the tables that needs to be replicated. Save the connection.
You can also set the cron in the setting of that connection.