How to specify the Airbyte Version in the Helm Chart? #32349
-
Hi! How can I set explicitly the App Version while using helm charts for installing airbyte? I use Kustomize and set |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Setting up |
Beta Was this translation helpful? Give feedback.
-
You need to override the env_vars:
AIRBYTE_VERSION: 0.50.11 |
Beta Was this translation helpful? Give feedback.
-
Well it looks like setting this env var does not work. Tried both setting via webapp:
resources:
requests:
memory: 512Mi
cpu: 250m
limits:
memory: 512Mi
cpu: 250m
env_vars:
AIRBYTE_VERSION: "0.50.11" results with:
In general setting env vars injection does work, like setting |
Beta Was this translation helpful? Give feedback.
-
Well, it looks like the working solution for this case is setting version in values in following manner: version: "0.50.11"
global:
image:
tag: "0.50.11" |
Beta Was this translation helpful? Give feedback.
Well, it looks like the working solution for this case is setting version in values in following manner: