Claudio Cavallo
07/04/2023, 12:46 PMkapa.ai
07/04/2023, 12:46 PMkapa.ai
07/04/2023, 12:47 PMvalues.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: 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: 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=).