-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
values.yaml
25 lines (23 loc) · 1.25 KB
/
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
# https://artifacthub.io/packages/helm/airflow-helm/airflow/8.3.1
airflow:
## environment variables for airflow configs
## [FAQ] https://github.com/airflow-helm/charts/blob/main/charts/airflow/docs/faq/configuration/airflow-configs.md
config:
AIRFLOW__WEBSERVER__EXPOSE_CONFIG: "True"
AIRFLOW__CORE__LOAD_EXAMPLES: "True"
AIRFLOW_CONN_HASHIQUBE: "ssh://vagrant:[email protected]:22?timeout=10&compress=false&no_host_key_check=true&allow_host_key_change=true"
## extra VolumeMounts for the airflow Pods
## [FAQ] https://github.com/airflow-helm/charts/blob/main/charts/airflow/docs/faq/kubernetes/mount-persistent-volumes.md
## [FAQ] https://github.com/airflow-helm/charts/blob/main/charts/airflow/docs/faq/kubernetes/mount-files.md
extraVolumeMounts:
- name: dags-data-volume-mount
mountPath: /opt/airflow/dags
readOnly: false
## extra Volumes for the airflow Pods
## [FAQ] https://github.com/airflow-helm/charts/blob/main/charts/airflow/docs/faq/kubernetes/mount-persistent-volumes.md
## [FAQ] https://github.com/airflow-helm/charts/blob/main/charts/airflow/docs/faq/kubernetes/mount-files.md
extraVolumes:
- name: dags-data-volume
persistentVolumeClaim:
claimName: airflow-dags
readOnly: false