Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
fix: consider kubeapi as unhealthy after 15 trials
Browse files Browse the repository at this point in the history
  • Loading branch information
eliobischof committed Dec 10, 2019
1 parent ebfdc15 commit 7baaed4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
{"path": "./artifacts/orbctl-FreeBSD-x86_64", "label": "FreeBSD x86_64"},
{"path": "./artifacts/orbctl-Linux-x86_64", "label": "Linux x86_64"},
{"path": "./artifacts/orbctl-OpenBSD-x86_64", "label": "OpenBSD x86_64"},
{"path": "./artifacts/orbctl-Windows-x86_64", "label": "Windows x86_64"}
{"path": "./artifacts/orbctl-Windows-x86_64.exe", "label": "Windows x86_64"}
]
}]
]
Expand Down
2 changes: 1 addition & 1 deletion internal/kinds/loadbalancers/dynamic/adapter/adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ vrrp_sync_group VG1 {
{{ range $idx, $vip := .VIPs }}vrrp_script chk_{{ $vip.IP }} {
script "{{ healthcmd $vip.Transport }}"
interval 2 # check every 2 seconds
fall 2 # require 2 failures for KO
fall 15 # require 2 failures for KO
rise 2 # require 2 successes for OK
}
Expand Down

0 comments on commit 7baaed4

Please # to comment.