From b34ec6c46b391f348be67def3ae94f115000015b Mon Sep 17 00:00:00 2001
From: keyboardfann <keyboardfann@gmail.com>
Date: Sat, 22 Feb 2020 23:04:47 +0800
Subject: [PATCH] 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
---
 docs/ha-mode.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/ha-mode.md b/docs/ha-mode.md
index 754448faf..ddf330715 100644
--- a/docs/ha-mode.md
+++ b/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
 ```
 
-- 
GitLab