From 2a08e408f5f5854a561192ca1831b990058a70a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCller?= Date: Thu, 9 Jul 2026 09:12:47 +0200 Subject: [PATCH 1/2] docs: improve section on override options --- docs/modules/airflow/pages/usage-guide/overrides.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/airflow/pages/usage-guide/overrides.adoc b/docs/modules/airflow/pages/usage-guide/overrides.adoc index f0a00b1c..4c67692f 100644 --- a/docs/modules/airflow/pages/usage-guide/overrides.adoc +++ b/docs/modules/airflow/pages/usage-guide/overrides.adoc @@ -40,8 +40,8 @@ webservers: config: {} ---- -Although Kubernetes can override these settings in one of two ways (Configuration overrides, or Environment Variable overrides), the effect is the same -and currently only the latter is implemented. +Note that `configOverrides` is specifically supported for customizing `webserver_config.py`. +To override standard Airflow configuration properties (listed in the Configuration Reference), use `envOverrides` with the `AIRFLOW__SECTION__KEY` format, as the operator injects these via environment variables rather than modifying a static config file. This is described in the following section. == Environment Variables From 3fd456c9fee411ce7237d373a46524a3193e375c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCller?= Date: Thu, 9 Jul 2026 10:04:53 +0200 Subject: [PATCH 2/2] chore: incorporate review suggestion --- docs/modules/airflow/pages/usage-guide/overrides.adoc | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/modules/airflow/pages/usage-guide/overrides.adoc b/docs/modules/airflow/pages/usage-guide/overrides.adoc index 4c67692f..0203830c 100644 --- a/docs/modules/airflow/pages/usage-guide/overrides.adoc +++ b/docs/modules/airflow/pages/usage-guide/overrides.adoc @@ -16,8 +16,6 @@ Airflow exposes an environment variable for every Airflow configuration setting, As Airflow can be configured with python code too, arbitrary code can be added to the `webserver_config.py`. You can use either `FILE_HEADER` to add code to the top or `FILE_FOOTER` to add to the bottom. -IMPORTANT: This is an experimental feature. - [source,yaml] ---- webservers: