File tree Expand file tree Collapse file tree 6 files changed +3
-36
lines changed Expand file tree Collapse file tree 6 files changed +3
-36
lines changed Original file line number Diff line number Diff line change @@ -89,8 +89,6 @@ controller:
89
89
digest:
90
90
config:
91
91
worker-processes: "1"
92
- extraArgs:
93
- enable-quic: "true"
94
92
podLabels:
95
93
deploy-date: "$( date +%s) "
96
94
updateStrategy:
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ metadata:
317
317
| controller.configMapNamespace | string | `""` | Allows customization of the configmap / nginx-configmap namespace; defaults to $(POD_NAMESPACE) |
318
318
| controller.containerName | string | `"controller"` | Configures the controller container name |
319
319
| controller.containerPort | object | `{"http":80,"https":443}` | Configures the TCP ports that the nginx-controller listens on |
320
- | controller.containerUdpPort | object | `{"quic":443 }` | Configures the UDP ports that the nginx-controller listens on |
320
+ | controller.containerUdpPort | object | `{}` | Configures the UDP ports that the nginx-controller listens on |
321
321
| controller.containerSecurityContext | object | `{}` | Security context for controller containers |
322
322
| controller.customTemplate.configMapKey | string | `""` | |
323
323
| controller.customTemplate.configMapName | string | `""` | |
Original file line number Diff line number Diff line change @@ -208,18 +208,6 @@ tests:
208
208
- equal :
209
209
path : spec.template.spec.runtimeClassName
210
210
value : myClass
211
-
212
- - it : should create a DaemonSet with a default UDP container port
213
- set :
214
- controller.kind : DaemonSet
215
- asserts :
216
- - contains :
217
- path : spec.template.spec.containers[0].ports
218
- content :
219
- name : quic
220
- containerPort : 443
221
- protocol : UDP
222
-
223
211
- it : should create a DaemonSet with a custom UDP container port if `controller.containerUdpPort.quic` is set
224
212
set :
225
213
controller.kind : DaemonSet
Original file line number Diff line number Diff line change @@ -232,15 +232,6 @@ tests:
232
232
path : spec.template.spec.runtimeClassName
233
233
value : myClass
234
234
235
- - it : should create a Deployment with a default UDP container port
236
- asserts :
237
- - contains :
238
- path : spec.template.spec.containers[0].ports
239
- content :
240
- name : quic
241
- containerPort : 443
242
- protocol : UDP
243
-
244
235
- it : should create a Deployment with a custom UDP container port if `controller.containerUdpPort.quic` is set
245
236
set :
246
237
controller.containerUdpPort.quic : 1234
Original file line number Diff line number Diff line change @@ -22,16 +22,6 @@ tests:
22
22
path : metadata.name
23
23
value : RELEASE-NAME-ingress-nginx-controller
24
24
25
- - it : should create a NetworkPolicy with a default UDP port
26
- set :
27
- controller.networkPolicy.enabled : true
28
- asserts :
29
- - contains :
30
- path : spec.ingress[0].ports
31
- content :
32
- protocol : UDP
33
- port : 443
34
-
35
25
- it : should create a NetworkPolicy with a custom UDP port if `controller.containerUdpPort.quic` is set
36
26
set :
37
27
controller.networkPolicy.enabled : true
Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ controller:
52
52
http : 80
53
53
https : 443
54
54
# -- Configures the UDP ports that the nginx-controller listens on
55
- containerUdpPort :
56
- quic : 443
55
+ containerUdpPort : []
56
+ # quic: 443
57
57
# -- Global configuration passed to the ConfigMap consumed by the controller. Values may contain Helm templates.
58
58
# Ref.: https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/configmap/
59
59
config : {}
You can’t perform that action at this time.
0 commit comments