I wanna deploy specific airbyte version 0.44.4 wit...
# replication-ask-ai
c
I wanna deploy specific airbyte version 0.44.4 with helm into EKS.
k
A message from kapa.ai
To deploy a specific version of Airbyte on EKS using Helm, you can follow the instructions provided in the [Airbyte documentation](https://docs.airbyte.com/deploying-airbyte/on-kubernetes-via-helm). However, the specific version you mentioned (0.44.4) is not explicitly mentioned in the extracts provided. The extracts mention deploying Airbyte with default values and customizing your deployment with a
values.yaml
file. Here's a general guide on how to deploy Airbyte with Helm: 1. If you don't intend to customize your deployment, you can deploy Airbyte as is with default values. To do so, run the command:
Copy code
bash helm install %release_name% airbyte/airbyte
2. If you want to customize your deployment, create a
values.yaml
file in the local folder and populate it with default configuration override values. An example of
values.yaml
can be found in the [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
Please note that you'll need to replace
%release_name%
with the name of your release. To specify a particular version of Airbyte, you might need to modify the
values.yaml
file or specify the version directly in the Helm install command. However, the exact details on how to specify a version are not provided in the extracts. For more detailed instructions and support, consider reaching out on the
#troubleshooting
channel on [Airbyte's Slack](https://slack.airbyte.io/) or [create an issue on GitHub](https://github.com/airbytehq/airbyte/issues/new?assignees=&labels=type%2Fbug&template=bug-report.md&title=).