Prayrit Dahiya
02/06/2025, 5:49 AMglobal:
env_configmap:
create: true
data:
AIRBYTE_VERSION: "1.3.1"
env:
- name: AIRBYTE_VERSION
valueFrom:
configMapKeyRef:
name: airbyte-env
key: AIRBYTE_VERSION
kapa.ai
02/06/2025, 5:49 AMyaml version: 1.3.1
This should be placed at the root level of your values.yaml
file. The version
key is used to specify the Airbyte version you want to deploy. The configuration you've shown seems to be attempting to set an environment variable for the Airbyte version, which is not the recommended way to specify the version for deployment. If you want to set additional environment variables, you can use the global.env_vars
section in your values.yaml
file. However, for setting the Airbyte version, simply use the version
key as shown above. For more information on configuring Airbyte using Helm, you can refer to the [Configuring Airbyte documentation](https://docs.airbyte.com/operator-guides/configuring-airbyte).Prayrit Dahiya
02/06/2025, 5:51 AMAIRBYTE_VERSION
- Defines the Airbyte deployment version.kapa.ai
02/06/2025, 5:51 AMkapa.ai
02/06/2025, 5:51 AMAIRBYTE_VERSION
as defining the Airbyte deployment version. However, I need to clarify and correct this information based on the most up-to-date knowledge sources available to me. According to the [Configuring Airbyte documentation](https://docs.airbyte.com/operator-guides/configuring-airbyte), the correct way to specify the Airbyte version in a Kubernetes deployment using Helm is through the version
key in the values.yaml
file, not through an environment variable named AIRBYTE_VERSION
. The documentation you're referring to might be outdated or referring to a different deployment method. For Kubernetes deployments using Helm, which is the recommended production setup, you should use: yaml version: x.y.z
Where x.y.z
is the version number you want to deploy. It's important to note that Airbyte's configuration and deployment methods have evolved, and the most current practice is to use the version
key in the Helm chart's values.yaml
file to specify the Airbyte version. If you're using a different deployment method or if you have specific reasons to use environment variables, please provide more context about your setup, and I can try to give you more accurate information.