From 32181cdc75c043d754e8762f6de9a4fed92e7841 Mon Sep 17 00:00:00 2001 From: Jonathan Miles Date: Thu, 30 May 2019 21:24:23 +0100 Subject: [PATCH] [stable/airflow]: align log path directories (#14339) - Add missing config overrides for scheduler.child_process_log_directory and core.dag_processor_manager_log_location Signed-off-by: Jonathan Miles --- stable/airflow/Chart.yaml | 2 +- stable/airflow/templates/configmap-env.yaml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/stable/airflow/Chart.yaml b/stable/airflow/Chart.yaml index df50a700a4..637f8ead52 100644 --- a/stable/airflow/Chart.yaml +++ b/stable/airflow/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 description: Airflow is a platform to programmatically author, schedule and monitor workflows name: airflow -version: 2.8.5 +version: 2.8.6 appVersion: 1.10.2 icon: https://airflow.apache.org/_images/pin_large.png home: https://airflow.apache.org/ diff --git a/stable/airflow/templates/configmap-env.yaml b/stable/airflow/templates/configmap-env.yaml index 11f6ee11af..cdd0fb9497 100644 --- a/stable/airflow/templates/configmap-env.yaml +++ b/stable/airflow/templates/configmap-env.yaml @@ -29,6 +29,8 @@ data: AIRFLOW__CELERY__WORKER_CONCURRENCY: "{{ .Values.workers.celery.instances }}" AIRFLOW__CORE__DAGS_FOLDER: "{{ .Values.dags.path }}" AIRFLOW__CORE__BASE_LOG_FOLDER: "{{ .Values.logs.path }}" + AIRFLOW__CORE__DAG_PROCESSOR_MANAGER_LOG_LOCATION: "{{ printf "%s/%s" .Values.logs.path "dag_processor_manager/dag_processor_manager.log" }}" + AIRFLOW__SCHEDULER__CHILD_PROCESS_LOG_DIRECTORY: "{{ printf "%s/%s" .Values.logs.path "scheduler" }}" AIRFLOW__WEBSERVER__BASE_URL: "http://localhost:8080{{ .Values.ingress.web.path }}" # Disabling XCom pickling for forward compatibility AIRFLOW__CODE__ENABLE_XCOM_PICKLING: "false"