From 785616393557c4e3f616287de81b61a68ba177ac Mon Sep 17 00:00:00 2001 From: Nicolas Vollmar Date: Wed, 17 Apr 2024 11:14:11 +0200 Subject: T6246: adds basic haproxy http-check configuration --- data/templates/load-balancing/haproxy.cfg.j2 | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'data/templates') diff --git a/data/templates/load-balancing/haproxy.cfg.j2 b/data/templates/load-balancing/haproxy.cfg.j2 index feb10d247..83008e50a 100644 --- a/data/templates/load-balancing/haproxy.cfg.j2 +++ b/data/templates/load-balancing/haproxy.cfg.j2 @@ -110,6 +110,15 @@ frontend {{ front }} {% if backend is vyos_defined %} {% for back, back_config in backend.items() %} backend {{ back }} +{% if back_config.http_check is vyos_defined %} + option httpchk +{% endif %} +{% if back_config.http_check.uri is vyos_defined and back_config.http_check.method is vyos_defined %} + http-check send meth {{ back_config.http_check.method | upper }} uri {{ back_config.http_check.uri }} +{% endif %} +{% if back_config.http_check.expect is vyos_defined %} + http-check expect {{ back_config.http_check.expect }} +{% endif %} {% if back_config.balance is vyos_defined %} {% set balance_translate = {'least-connection': 'leastconn', 'round-robin': 'roundrobin', 'source-address': 'source'} %} balance {{ balance_translate[back_config.balance] }} -- cgit v1.2.3