Hey, I'm trying downgrade Airbyte using helm and ...
# replication-ask-ai
w
Hey, I'm trying downgrade Airbyte using helm and
values.yml
file. What should be change there in order to deploy Airbyte with the desired version (in my case 0.40.27)? I found
version
section but it does not help at all, Airbyte is deployed with the most recent version
k
A message from kapa.ai
To downgrade Airbyte using Helm and the
values.yaml
file, you need to specify the desired image tag in the
values.yaml
file. In your case, you want to use Airbyte version 0.40.27. Update the
values.yaml
file with the following:
Copy code
yaml airbyte:   image:     tag: 0.40.27
Additionally, you may need to specify the Helm chart version that corresponds to the Airbyte version you want to install. You can find the available Helm chart versions and their corresponding Airbyte versions by running:
Copy code
helm search repo airbyte-oss/airbyte --versions
Once you find the appropriate Helm chart version, you can install or upgrade Airbyte using the following command:
Copy code
helm upgrade -f path/to/values.yaml <release_name> airbyte/airbyte --version <chart_version>
Replace
<release_name>
with your desired release name and
<chart_version>
with the Helm chart version corresponding to Airbyte 0.40.27. Keep in mind that the information provided is based on the available extracts, and there might be additional steps or changes required depending on your specific setup.
j
If deploymentMode is oss (the default one),
Copy code
global:
   ...

version: 0.40.27