Browse Source

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
pull/5676/head
keyboardfann 4 years ago
committed by GitHub
parent
commit
b34ec6c46b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. 6
      docs/ha-mode.md

6
docs/ha-mode.md

@ -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
```

Loading…
Cancel
Save