how to configure values.yaml with versions
# ask-ai
t
how to configure values.yaml with versions
k
To configure the
values.yaml
file with specific versions in Airbyte, you should follow these steps: 1. Create a
values.yaml
file in your Airbyte directory if you haven't already. 2. In the
values.yaml
file, you can specify the version you want to use by adding the following configuration:
Copy code
yaml global:   edition: enterprise
3. To set a specific version of Airbyte, you can use the
--version
flag when running the Helm install or upgrade command. For example:
Copy code
helm upgrade \ --namespace airbyte \ --values ./values.yaml \ --install airbyte-enterprise \ airbyte/airbyte \ --version <SPECIFIC_VERSION>
Replace
<SPECIFIC_VERSION>
with the desired Airbyte version. It's important to note that you should use a minimal
values.yaml
file instead of copying and modifying the full version. This is because Airbyte makes changes over time that may not be compatible across versions. For the most up-to-date and version-specific
values.yaml
configuration, you can refer to the [Airbyte Platform Repository](https://github.com/airbytehq/airbyte-platform/blob/main/charts/airbyte/values.yaml). You can also look at specific tags for each version (e.g., v1.2.0) in this repository. Remember that Airbyte doesn't currently provide a comprehensive list of changes between versions for the
values.yaml
file. Always refer to the latest documentation and repository for the most accurate information. [Implementation Guide](https://docs.airbyte.com/enterprise-setup/implementation-guide#customizing-your-deployment) [Installation Guide](https://docs.airbyte.com/deploying-airbyte/#3-create-a-valuesyaml-override-file)