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 fbf687cbb12 Chart: warn on deprecated per-component securityContext 
values (#62729)
fbf687cbb12 is described below

commit fbf687cbb126b3547354179b02d99bfa105b0fe2
Author: Jed Cunningham <[email protected]>
AuthorDate: Mon Mar 2 15:24:03 2026 -0700

    Chart: warn on deprecated per-component securityContext values (#62729)
    
    Add DEPRECATION WARNING notices in NOTES.txt for
    scheduler.securityContext, webserver.securityContext, and
    statsd.securityContext. These fields were already marked deprecated in
    values.yaml (use securityContexts instead) but no warning was shown to
    users at install/upgrade time.
---
 chart/templates/NOTES.txt | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/chart/templates/NOTES.txt b/chart/templates/NOTES.txt
index b240d74045c..79d967919dd 100644
--- a/chart/templates/NOTES.txt
+++ b/chart/templates/NOTES.txt
@@ -221,6 +221,30 @@ DEPRECATION WARNING:
 
 {{- end }}
 
+{{- if .Values.scheduler.securityContext }}
+
+ DEPRECATION WARNING:
+    `scheduler.securityContext` has been renamed to 
`scheduler.securityContexts`.
+    Please change your values as support for the old name will be dropped in a 
future release.
+
+{{- end }}
+
+{{- if .Values.webserver.securityContext }}
+
+ DEPRECATION WARNING:
+    `webserver.securityContext` has been renamed to 
`webserver.securityContexts`.
+    Please change your values as support for the old name will be dropped in a 
future release.
+
+{{- end }}
+
+{{- if .Values.statsd.securityContext }}
+
+ DEPRECATION WARNING:
+    `statsd.securityContext` has been renamed to `statsd.securityContexts`.
+    Please change your values as support for the old name will be dropped in a 
future release.
+
+{{- end }}
+
 {{- if ne (int .Values.workers.replicas) 1 }}
 
  DEPRECATION WARNING:

Reply via email to