forked from blockchain-etl/ethereum-etl-airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helm-values.yaml
47 lines (38 loc) · 1.22 KB
/
helm-values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Default airflow tag to deploy
defaultAirflowTag: "1.10.15"
# Airflow version (Used to make some decisions based on Airflow Version being deployed)
airflowVersion: "1.10.15"
images:
airflow:
repository: {{IMAGE_REPOSITORY}}
tag: {{IMAGE_TAG}}
# Airflow database & redis config
data:
metadataSecretName: airflow-database
resultBackendSecretName: airflow-result-database
# Flask secret key for Airflow Webserver: `[webserver] secret_key` in airflow.cfg
webserverSecretKeySecretName: airflow-webserver-secret
# Fernet key settings
# Note: fernetKey can only be set during install, not upgrade
fernetKey: {{FERNET_KEY}}
# PgBouncer settings
pgbouncer:
# Enable PgBouncer
enabled: true
# Configuration for postgresql subchart
# Not recommended for production
postgresql:
enabled: false
# Git sync
dags:
gitSync:
enabled: true
# git repo clone url
# ssh examples ssh://git@github.com/apache/airflow.git
# git@github.com:apache/airflow.git
# https example: https://github.com/apache/airflow.git
repo: https://github.com/datawaves-xyz/ethereum-etl-airflow.git
branch: master
# subpath within the repo where dags are located
# should be "" if dags are at repo root
subPath: "/dags"