Skip to content
Snippets Groups Projects
Unverified Commit b34ec6c4 authored by keyboardfann's avatar keyboardfann Committed by GitHub
Browse files

Enhance ha document (#5664)

* Fix HAproxy config to avoid client offered only unsupported versions error

* Add HAproxy SSL check interval

* Fix ha mode document markdown
parent 6368c626
No related branches found
No related tags found
No related merge requests found
...@@ -53,12 +53,12 @@ an example configuration for a HAProxy service acting as an external LB: ...@@ -53,12 +53,12 @@ an example configuration for a HAProxy service acting as an external LB:
```raw ```raw
listen kubernetes-apiserver-https listen kubernetes-apiserver-https
bind <VIP>:8383 bind <VIP>:8383
option ssl-hello-chk
mode tcp mode tcp
option log-health-checks
timeout client 3h timeout client 3h
timeout server 3h timeout server 3h
server master1 <IP1>:6443 server master1 <IP1>:6443 check check-ssl verify none inter 10000
server master2 <IP2>:6443 server master2 <IP2>:6443 check check-ssl verify none inter 10000
balance roundrobin balance roundrobin
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment