This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 45e355c260017780b919dc90878db80eabb4eb76 Author: gardnerdev <[email protected]> AuthorDate: Fri Aug 28 21:57:34 2020 +0200 Update scheduler deployment - dags volume mount (#10630) (cherry picked from commit e495be9fd93d0f700f953fe5749260850ecd9b11) --- chart/templates/scheduler/scheduler-deployment.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/chart/templates/scheduler/scheduler-deployment.yaml b/chart/templates/scheduler/scheduler-deployment.yaml index 619a16c1..9a928a6 100644 --- a/chart/templates/scheduler/scheduler-deployment.yaml +++ b/chart/templates/scheduler/scheduler-deployment.yaml @@ -147,6 +147,10 @@ spec: subPath: airflow_local_settings.py readOnly: true {{- end }} +{{- if .Values.dags.persistence.enabled }} + - name: dags + mountPath: {{ template "airflow_dags_mount_path" . }} +{{- end }} {{- if .Values.dags.gitSync.enabled }} - name: dags mountPath: {{ template "airflow_dags_mount_path" . }}
