Actually check backends are alive in haproxy

This adds the simplest form of health checking to haproxy, a tcp check
to the backends. We can do more sophisticated checks like checking ssl
negotiates or even HTTP requests but for now this is probably a good
improvement.

Change-Id: I3c6b07df4b3e0c380c757e1e5cb51ae0be655f34
This commit is contained in:
Clark Boylan 2019-07-23 08:13:12 -07:00
parent cb33dba40a
commit 08a113d4a8

View File

@ -27,9 +27,10 @@ listen {{ listener.name }}
mode tcp
balance source
option tcplog
option tcp-check
{% for server in listener.servers %}
server {{ server.name }} {{ server.address }}
server {{ server.name }} {{ server.address }} check
{% endfor %}
{% endfor %}