This is an automated email from the ASF dual-hosted git repository.
Miretpl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new bdb9580de61 Helm: Point flower extraNetworkPolicies deprecation at the
real key (#72052)
bdb9580de61 is described below
commit bdb9580de613078beeebe4fd9fa4417fde231af0
Author: Y-C <[email protected]>
AuthorDate: Wed Sep 2 22:09:13 2026 +0800
Helm: Point flower extraNetworkPolicies deprecation at the real key (#72052)
The deprecation notice has named `flower.networkPolicy.peers` since the
parameter was restructured, but that key never shipped.
`flower.networkPolicy`
is declared with `additionalProperties: false`, so anyone who follows the
notice hits a schema validation error and cannot install or upgrade at all.
The warning fires only when the deprecated parameter is set, so it reaches
exactly the users who are trying to migrate and sends them into a dead end.
Co-authored-by: Eason09053360
<[email protected]>
---
chart/templates/NOTES.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chart/templates/NOTES.txt b/chart/templates/NOTES.txt
index 51b7690ed01..a766e2522c8 100644
--- a/chart/templates/NOTES.txt
+++ b/chart/templates/NOTES.txt
@@ -108,7 +108,7 @@
https://airflow.apache.org/docs/helm-chart/stable/production-guide.html#knownhos
{{- if .Values.flower.extraNetworkPolicies }}
DEPRECATION WARNING:
- `flower.extraNetworkPolicies` has been renamed to
`flower.networkPolicy.peers`.
+ `flower.extraNetworkPolicies` has been renamed to
`flower.networkPolicy.ingress.from`.
Please change your values as support for the old name will be dropped in a
future release.
{{- end }}