There is a problem with haproxy health check configuration after haproxy update on Centos 7:
previous package: haproxy-1.5.18-8.el7.x86_64.rpm
new package: haproxy-1.5.18-9.el7.x86_64.rpm
New haproxy package requires additional "tcp-check connect" directive before "tcp-cgeck send exit\n". Without the "connect" line healt checks don't work anymore.
Files needed to be updates:
ansible-playbook/roles/haproxy/templates/haproxy.cfg.j2
Lines:
{% if haproxy_version >= '1.5.0' and front_end.plone_client_tcpcheck|default(plone_client_tcpcheck|default(false)) %}
option tcp-check
+tcp-check connect
tcp-check send quit\n
{% else %}
Can anyone update the package? I am not familiar enough with github.
There is a problem with haproxy health check configuration after haproxy update on Centos 7:
New haproxy package requires additional "tcp-check connect" directive before "tcp-cgeck send exit\n". Without the "connect" line healt checks don't work anymore.
Files needed to be updates: ansible-playbook/roles/haproxy/templates/haproxy.cfg.j2
Lines: {% if haproxy_version >= '1.5.0' and front_end.plone_client_tcpcheck|default(plone_client_tcpcheck|default(false)) %} option tcp-check +tcp-check connect tcp-check send quit\n {% else %}
Can anyone update the package? I am not familiar enough with github.