Skip to content

Commit 487dbe6

Browse files
authored
Add workerConnections field to helm chart (#3616)
Problem: workerConnections was not able to be configured by helm Solution: I added the field to the schema. Testing: I tested a new helm chart with workerConnections set to 2048 and saw that the NginxProxy resource had the correct value and the worker connections field appeared in the conf as well.
1 parent 5a0844c commit 487dbe6

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

charts/nginx-gateway-fabric/values.schema.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,13 @@
305305
},
306306
"required": [],
307307
"type": "object"
308+
},
309+
"workerConnections": {
310+
"description": "The number of worker connections for NGINX. Default is 1024.",
311+
"maximum": 65535,
312+
"minimum": 1,
313+
"required": [],
314+
"type": "integer"
308315
}
309316
},
310317
"required": [],

charts/nginx-gateway-fabric/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,11 @@ nginx:
371371
# - IPAddress
372372
# value:
373373
# type: string
374+
# workerConnections:
375+
# type: integer
376+
# minimum: 1
377+
# maximum: 65535
378+
# description: The number of worker connections for NGINX. Default is 1024.
374379
# @schema
375380
# -- The configuration for the data plane that is contained in the NginxProxy resource. This is applied globally to all Gateways
376381
# managed by this instance of NGINX Gateway Fabric.

0 commit comments

Comments
 (0)