Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add ingress deprecation warnings for apiServer, statsd, and pgbouncer
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.

Co-authored-by: Cursor <cursoragent@cursor.com>
  • Loading branch information
jedcunningham and cursoragent committed Feb 25, 2026
commit 5e5a221869b05d8c580a49cb6055bbb442c08c4f
35 changes: 35 additions & 0 deletions chart/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading