Skip to content

Commit 2642247

Browse files
authored
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
1 parent 0faa0cc commit 2642247

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

chart/values.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,10 @@ migrateDatabaseJob:
13031303

13041304
apiServer:
13051305

1306-
# Labels specific to workers objects and pods
1306+
# Number of Airflow API servers in the deployment
1307+
replicas: 1
1308+
1309+
# Labels specific to Airflow API server objects and pods
13071310
labels: {}
13081311

13091312
# Command to use when running the Airflow API server (templated).
@@ -1322,7 +1325,7 @@ apiServer:
13221325
# If not set and create is true, a name is generated using the release name
13231326
name: ~
13241327

1325-
# Annotations to add to webserver kubernetes service account.
1328+
# Annotations to add to Airflow API server kubernetes service account.
13261329
annotations: {}
13271330
service:
13281331
type: ClusterIP
@@ -1347,7 +1350,7 @@ apiServer:
13471350
maxUnavailable: 1
13481351
# minAvailable: 1
13491352

1350-
# Detailed default security contexts for webserver deployments for container and pod level
1353+
# Detailed default security contexts for Airflow API server deployments for container and pod level
13511354
securityContexts:
13521355
pod: {}
13531356
container: {}
@@ -1360,14 +1363,14 @@ apiServer:
13601363
securityContexts:
13611364
container: {}
13621365

1363-
# Launch additional containers into the flower pods.
1366+
# Launch additional containers into the Airflow API server pods.
13641367
extraContainers: []
13651368

13661369
networkPolicy:
13671370
ingress:
1368-
# Peers for webserver NetworkPolicy ingress
1371+
# Peers for Airflow API server NetworkPolicy ingress
13691372
from: []
1370-
# Ports for webserver NetworkPolicy ingress (if `from` is set)
1373+
# Ports for Airflow API server NetworkPolicy ingress (if `from` is set)
13711374
ports:
13721375
- port: "{{ .Values.ports.apiServer }}"
13731376

0 commit comments

Comments
 (0)