Skip to content

Commit

Permalink
Enhance ha document (#5664)
Browse files Browse the repository at this point in the history
* Fix HAproxy config to avoid client offered only unsupported versions error

* Add HAproxy SSL check interval

* Fix ha mode document markdown
  • Loading branch information
keyboardfann committed Feb 22, 2020
1 parent 6368c62 commit b34ec6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/ha-mode.md
Expand Up @@ -53,12 +53,12 @@ an example configuration for a HAProxy service acting as an external LB:
```raw
listen kubernetes-apiserver-https
bind <VIP>:8383
option ssl-hello-chk
mode tcp
option log-health-checks
timeout client 3h
timeout server 3h
server master1 <IP1>:6443
server master2 <IP2>:6443
server master1 <IP1>:6443 check check-ssl verify none inter 10000
server master2 <IP2>:6443 check check-ssl verify none inter 10000
balance roundrobin
```

Expand Down

0 comments on commit b34ec6c

Please sign in to comment.