From be809eca4ecb48e046dbb66a2d24eb8f10862700 Mon Sep 17 00:00:00 2001 From: dvirlabs <114520947+dvirlabs@users.noreply.github.com> Date: Tue, 2 Jun 2026 17:45:08 +0300 Subject: [PATCH] Fix airflow --- manifests/air-flow/values.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/manifests/air-flow/values.yaml b/manifests/air-flow/values.yaml index f449ef0..a520fd7 100644 --- a/manifests/air-flow/values.yaml +++ b/manifests/air-flow/values.yaml @@ -41,13 +41,27 @@ data: db: type: postgres - host: ~ + host: airflow-postgresql.dev-tools.svc.cluster.local port: 5432 user: airflow pass: airflow123 dbName: airflow sslMode: disable +# Airflow Configuration +config: + core: + # Increase migration wait timeout to 10 minutes (600 seconds) + migration_wait_timeout: 600 + # Enable SQL Alchemy connection pool + sql_alchemy_pool_enabled: true + sql_alchemy_pool_pre_ping: true + sql_alchemy_max_overflow: 10 + sql_alchemy_pool_size: 5 + database: + # Connection string format for postgres - will be auto-generated from db.* values + sql_alchemy_conn: ~ + # Migration Job Configuration - allows migrations to complete migrationJob: enabled: true