plone / ansible-playbook

An Ansible playbook for automated deployment of full-stack Plone servers.
90 stars 74 forks source link

haproxy configuration update needed for newest CentOS 7 (7.7.1908) #123

Closed jid closed 4 years ago

jid commented 5 years ago

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.