ingress-nginx-helm/docs/examples/customization/sysctl/patch.json
k8s-infra-cherrypick-robot 1f3a3fb3f9
Images: Bump Alpine to v3.21. (#12529)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marco Ebert <marco_ebert@icloud.com>
2024-12-21 00:54:11 +01:00

16 lines
319 B
JSON

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