Browse Source

Add option to configure IPVS timeouts in kube-proxy configration manifest. (#6396)

pull/6487/head
fulii 4 years ago
committed by GitHub
parent
commit
ce22c0e6a4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions
  1. 12
      roles/kubernetes/master/defaults/main/kube-proxy.yml
  2. 3
      roles/kubernetes/master/templates/kubeadm-config.v1beta2.yaml.j2

12
roles/kubernetes/master/defaults/main/kube-proxy.yml

@ -84,6 +84,18 @@ kube_proxy_scheduler: rr
# must be set to true for MetalLB to work
kube_proxy_strict_arp: false
# kube_proxy_tcp_timeout is the timeout value used for idle IPVS TCP sessions.
# The default value is 0, which preserves the current timeout value on the system.
kube_proxy_tcp_timeout: 0s
# kube_proxy_tcp_fin_timeout is the timeout value used for IPVS TCP sessions after receiving a FIN.
# The default value is 0, which preserves the current timeout value on the system.
kube_proxy_tcp_fin_timeout: 0s
# kube_proxy_udp_timeout is the timeout value used for IPVS UDP packets.
# The default value is 0, which preserves the current timeout value on the system.
kube_proxy_udp_timeout: 0s
# The IP address and port for the metrics server to serve on
# (set to 0.0.0.0 for all IPv4 interfaces and `::` for all IPv6 interfaces)
kube_proxy_metrics_bind_address: 127.0.0.1:10249

3
roles/kubernetes/master/templates/kubeadm-config.v1beta2.yaml.j2

@ -358,6 +358,9 @@ ipvs:
scheduler: {{ kube_proxy_scheduler }}
syncPeriod: {{ kube_proxy_sync_period }}
strictARP: {{ kube_proxy_strict_arp }}
tcpTimeout: {{ kube_proxy_tcp_timeout }}
tcpFinTimeout: {{ kube_proxy_tcp_fin_timeout }}
udpTimeout: {{ kube_proxy_udp_timeout }}
metricsBindAddress: {{ kube_proxy_metrics_bind_address }}
mode: {{ kube_proxy_mode }}
nodePortAddresses: {{ kube_proxy_nodeport_addresses }}

Loading…
Cancel
Save