kubeasz/roles/kube-node/templates/kube-proxy-config.yaml.j2

16 lines
447 B
Plaintext
Raw Normal View History

2021-01-10 21:25:05 +08:00
kind: KubeProxyConfiguration
apiVersion: kubeproxy.config.k8s.io/v1alpha1
2022-01-05 12:43:03 +08:00
bindAddress: 0.0.0.0
2021-01-10 21:25:05 +08:00
clientConnection:
kubeconfig: "/etc/kubernetes/kube-proxy.kubeconfig"
clusterCIDR: "{{ CLUSTER_CIDR }}"
conntrack:
maxPerCore: 32768
min: 131072
tcpCloseWaitTimeout: 1h0m0s
tcpEstablishedTimeout: 24h0m0s
2022-01-05 12:43:03 +08:00
healthzBindAddress: 0.0.0.0:10256
2021-01-10 21:25:05 +08:00
hostnameOverride: "{{ inventory_hostname }}"
2022-01-05 12:43:03 +08:00
metricsBindAddress: 0.0.0.0:10249
2021-01-10 21:25:05 +08:00
mode: "{{ PROXY_MODE }}"