summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorNataliia Solomko <natalirs1985@gmail.com>2026-04-27 16:10:26 +0300
committerNataliia Solomko <natalirs1985@gmail.com>2026-04-27 18:18:47 +0300
commitc2fa136a3589c30d98cffa49c9dd7682c81c2002 (patch)
treeda9dc3917afda283da2b8eabfc6e3ea2139b9087 /src/conf_mode
parent0cc2bbfc54370cce2d2c7540fb155e464207f1be (diff)
downloadvyos-1x-c2fa136a3589c30d98cffa49c9dd7682c81c2002.tar.gz
vyos-1x-c2fa136a3589c30d98cffa49c9dd7682c81c2002.zip
T8293: Add ability to set timeout for high-availability health-check
Setting a timeout allows VRRP health-check scripts to run longer than the set interval. Without timeout, keepalived considers the script as failed after interval seconds. With timeout set higher than interval, the script has more time to complete before being marked as failed and transitioning VRRP to FAULT state.
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-xsrc/conf_mode/high-availability.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/conf_mode/high-availability.py b/src/conf_mode/high-availability.py
index 48a7d8abc..175929547 100755
--- a/src/conf_mode/high-availability.py
+++ b/src/conf_mode/high-availability.py
@@ -188,6 +188,15 @@ def _validate_health_check(group, group_config):
# to avoid generating useless config statements in keepalived.conf
del group_config["health_check"]
+ if 'timeout' in group_config.get('health_check', {}):
+ interval = int(group_config['health_check']['interval'])
+ timeout = int(group_config['health_check']['timeout'])
+ if timeout < interval:
+ Warning(
+ f'Health check timeout ({timeout}s) is less than interval ({interval}s) '
+ f'for VRRP group "{group}", script may be killed before completion'
+ )
+
def generate(ha):
if not ha or 'disable' in ha: