<@U04SE163WC8> how to deploy airbyte in k8s? Ca...
# ask-ai
m
@kapa.ai how to deploy airbyte in k8s? Cannot find helmcharts docs
u
Sure, I can guide you on how to deploy Airbyte on Kubernetes using Helm charts. Here are the steps: 1. First, you need to add the Helm repository where the Airbyte charts are stored. You can do this by running the following command:
Copy code
bash 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:
Copy code
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:
Copy code
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.