ingress-nginx-helm/docs/examples/customization/sysctl/patch.json

16 lines
318 B
JSON
Raw Normal View History

{
"spec": {
"template": {
"spec": {
"initContainers": [{
"name": "sysctl",
2021-01-15 02:50:51 +00:00
"image": "alpine:3.13",
"securityContext": {
"privileged": true
},
2019-12-02 00:48:00 +00:00
"command": ["sh", "-c", "sysctl -w net.core.somaxconn=32768; sysctl -w net.ipv4.ip_local_port_range='1024 65000'"]
}]
}
}
}
}