ingress-nginx-helm/docs/examples/customization/sysctl/patch.json
Manuel Alejandro de Brito Fontes e864fc7198
Update sysctl example (#4800)
2019-12-01 21:48:00 -03:00

16 lines
No EOL
318 B
JSON

{
"spec": {
"template": {
"spec": {
"initContainers": [{
"name": "sysctl",
"image": "alpine:3.10",
"securityContext": {
"privileged": true
},
"command": ["sh", "-c", "sysctl -w net.core.somaxconn=32768; sysctl -w net.ipv4.ip_local_port_range='1024 65000'"]
}]
}
}
}
}