From 332f5f48f0d3ff2e29000fa01a2e89f69b5f23dd Mon Sep 17 00:00:00 2001 From: Masaki Yatsu Date: Thu, 18 Sep 2025 02:54:37 +0900 Subject: [PATCH] fix(airflow): fsgroup --- airflow/airflow-values.gomplate.yaml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/airflow/airflow-values.gomplate.yaml b/airflow/airflow-values.gomplate.yaml index 8609360..097476a 100644 --- a/airflow/airflow-values.gomplate.yaml +++ b/airflow/airflow-values.gomplate.yaml @@ -13,9 +13,16 @@ executor: CeleryExecutor # Custom Airflow configuration config: + logging: + # Enable debug logging for troubleshooting + # logging_level: DEBUG scheduler: - # Scan for new DAG files every 60 seconds instead of 300 - dag_dir_list_interval: 60 + # Process DAG files more frequently (30 seconds instead of default 30) + min_file_process_interval: 30 + # Number of processes to parse DAGs in parallel + parsing_processes: 2 + # Scan for new DAG files every 10 seconds instead of 300 + dag_dir_list_interval: 10 apiServer: replicas: 1 @@ -149,11 +156,11 @@ ingress: tls: enabled: true -# Security contexts for shared file system access +# Security contexts for shared file system access (compatible with JupyterHub) securityContexts: pod: runAsUser: 1000 runAsGroup: 0 - fsGroup: 100 + fsGroup: 101 container: allowPrivilegeEscalation: false