Airbyte on Kubernetes: correct way to edit env vars #29540
Answered
by
albus-adtractive
albus-adtractive
asked this question in
Connector Questions
-
Hi, I've recently migrated our Airbyte instance to Kubernetes using Plural. For those who have experience with that - what is the correct way to edit .env in such case? Is it through Plural, directly, etc. In particular, I want to increase the default max sync time (which is 3 days). Best, |
Beta Was this translation helpful? Give feedback.
Answered by
albus-adtractive
Aug 19, 2023
Replies: 1 comment
-
OK, turns out there is a Helm config section on Plural. You go to apps/airbyte/configuration, you choose Helm tab, and then do it like this: airbyte: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
albus-adtractive
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK, turns out there is a Helm config section on Plural. You go to apps/airbyte/configuration, you choose Helm tab, and then do it like this:
airbyte:
airbyte:
extraEnv:
name: SYNC_JOB_MAX_TIMEOUT_DAYS
value: "10"
postgres:
...