This is an automated email from the ASF dual-hosted git repository.

jedcunningham 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 00c69f5ae97 Add ingress deprecation warnings for apiServer, statsd, 
and pgbouncer (#62490)
00c69f5ae97 is described below

commit 00c69f5ae978e568e89210482daa09b398a147cb
Author: Jed Cunningham <[email protected]>
AuthorDate: Thu Feb 26 14:01:29 2026 -0700

    Add ingress deprecation warnings for apiServer, statsd, and pgbouncer 
(#62490)
    
    Add deprecation warnings in Helm chart NOTES.txt for renamed ingress
    fields: apiServer.host, apiServer.tls, statsd.host, and pgbouncer.host.
    All warnings are guarded behind their respective ingress enabled flags
    to avoid false positives on default installs.
---
 chart/templates/NOTES.txt | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/chart/templates/NOTES.txt b/chart/templates/NOTES.txt
index 34dc878a2ca..6701ab1cd9f 100644
--- a/chart/templates/NOTES.txt
+++ b/chart/templates/NOTES.txt
@@ -113,6 +113,41 @@ Flower Dashboard:      kubectl port-forward svc/{{ include 
"airflow.fullname" .
 {{- end }}
 {{- end }}
 
+{{- if or .Values.ingress.apiServer.enabled .Values.ingress.enabled }}
+
+{{- if .Values.ingress.apiServer.host }}
+
+DEPRECATION WARNING:
+   `ingress.apiServer.host` has been renamed to `ingress.apiServer.hosts` and 
is now an array.
+   Please change your values as support for the old name will be dropped in a 
future release.
+
+{{- end }}
+
+{{- if .Values.ingress.apiServer.tls.enabled }}
+
+DEPRECATION WARNING:
+   `ingress.apiServer.tls` has been renamed to 
`ingress.apiServer.hosts[*].tls` and can be set per host.
+   Please change your values as support for the old name will be dropped in a 
future release.
+
+{{- end }}
+
+{{- end }}
+
+{{- if and .Values.ingress.statsd.enabled .Values.ingress.statsd.host }}
+
+DEPRECATION WARNING:
+   `ingress.statsd.host` has been renamed to `ingress.statsd.hosts` and is now 
an array.
+   Please change your values as support for the old name will be dropped in a 
future release.
+
+{{- end }}
+
+{{- if and .Values.ingress.pgbouncer.enabled .Values.ingress.pgbouncer.host }}
+
+DEPRECATION WARNING:
+   `ingress.pgbouncer.host` has been renamed to `ingress.pgbouncer.hosts` and 
is now an array.
+   Please change your values as support for the old name will be dropped in a 
future release.
+
+{{- end }}
 
 {{- if eq (include "createUserJob.isEnabled" .) "true" }}
 Default user (Airflow UI) Login credentials:

Reply via email to