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 26422475c68 Chart: add missing replicas api server parameter to 
values.yaml (#50814)
26422475c68 is described below

commit 26422475c6859a37dd9a424932f26e93b6dae28a
Author: Aakcht <[email protected]>
AuthorDate: Fri May 23 01:04:57 2025 +0500

    Chart: add missing replicas api server parameter to values.yaml (#50814)
    
    Add missing replicas api server parameter to values.yaml and fix some other 
api server comments in values.yam
---
 chart/values.yaml | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/chart/values.yaml b/chart/values.yaml
index 3fbeea9a6ee..b55e9cd3272 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -1303,7 +1303,10 @@ migrateDatabaseJob:
 
 apiServer:
 
-  # Labels specific to workers objects and pods
+  # Number of Airflow API servers in the deployment
+  replicas: 1
+
+  # Labels specific to Airflow API server objects and pods
   labels: {}
 
   # Command to use when running the Airflow API server (templated).
@@ -1322,7 +1325,7 @@ apiServer:
     # If not set and create is true, a name is generated using the release name
     name: ~
 
-    # Annotations to add to webserver kubernetes service account.
+    # Annotations to add to Airflow API server kubernetes service account.
     annotations: {}
   service:
     type: ClusterIP
@@ -1347,7 +1350,7 @@ apiServer:
       maxUnavailable: 1
       # minAvailable: 1
 
-  # Detailed default security contexts for webserver deployments for container 
and pod level
+  # Detailed default security contexts for Airflow API server deployments for 
container and pod level
   securityContexts:
     pod: {}
     container: {}
@@ -1360,14 +1363,14 @@ apiServer:
     securityContexts:
       container: {}
 
-  # Launch additional containers into the flower pods.
+  # Launch additional containers into the Airflow API server pods.
   extraContainers: []
 
   networkPolicy:
     ingress:
-      # Peers for webserver NetworkPolicy ingress
+      # Peers for Airflow API server NetworkPolicy ingress
       from: []
-      # Ports for webserver NetworkPolicy ingress (if `from` is set)
+      # Ports for Airflow API server NetworkPolicy ingress (if `from` is set)
       ports:
         - port: "{{ .Values.ports.apiServer }}"
 

Reply via email to