Muharrem Rexhepi
10/21/2024, 6:17 AMuser
10/21/2024, 6:17 AMbash helm repo add airbyte <https://airbytehq.github.io/helm-charts>
After adding the repo, perform the repo indexing process by running helm repo update
. You can now browse all charts uploaded to the repository by running helm search repo airbyte
[[source]](https://docs.airbyte.com/deploying-airbyte/on-kubernetes-via-helm#add-helm-repository). 2. If you don't intend to customize your deployment, you can deploy Airbyte as is with default values. In order to do so, run the command: bash helm install %release_name% airbyte/airbyte
Note: release_name
should only contain lowercase letters and optionally dashes (release_name
must start with a letter) [[source]](https://docs.airbyte.com/deploying-airbyte/on-kubernetes-via-helm#deploy-airbyte). 3. If you want to customize your deployment, you need to create a values.yaml
file in the local folder and populate it with default configuration override values. values.yaml
example can be located in [charts/airbyte](https://github.com/airbytehq/airbyte-platform/blob/main/charts/airbyte/values.yaml) folder of the Airbyte repository. After specifying your own configuration, run the following command: bash helm install --values path/to/values.yaml %release_name% airbyte/airbyte
[[source]](https://docs.airbyte.com/deploying-airbyte/on-kubernetes-via-helm#deploy-airbyte). 4. After the installation has completed, you can configure your [Ingress](https://docs.airbyte.com/deploying-airbyte/integrations/ingress) by following the directions for your specific Ingress provider [[source]](https://docs.airbyte.com/deploying-airbyte/#5-installing-airbyte). Please note that the Helm chart is community-contributed and not yet deployed to a chart registry as the Airbyte team did not yet certify its product usage. However, a lot of users rely on this chart and a lot of recent contributions were recently merged to improve its quality [[source]](https://discuss.airbyte.io/t/309). I hope this helps! Let me know if you have any other questions.