
* HAProxy is now 1.8 in CentOS 8 * Support python3 in baremetal role * Remove support for environments without python2 installed (this could not have worked since we gather facts before this point) Workarounds: * Using CentOS 7 yum repo for Docker, with module_hotfixes Change-Id: I30bd3d58f6224ad4c9575ba66c74deabe6895cc4 Partially-Implements: blueprint centos-rhel-8
12 lines
717 B
Django/Jinja
12 lines
717 B
Django/Jinja
#!/bin/bash -x
|
|
{% set has_haproxy_1_8=kolla_base_distro in ['debian', 'ubuntu'] or (kolla_base_distro == 'centos' and ansible_distribution_major_version is version(8, '>=')) %}
|
|
{% set haproxy_cmd='/usr/sbin/haproxy -W -db' if has_haproxy_1_8 else '/usr/sbin/haproxy-systemd-wrapper' %}
|
|
|
|
# We need to run haproxy with one `-f` for each service, because including an
|
|
# entire config directory was not a feature until version 1.7 of HAProxy.
|
|
# So, append "-f $cfg" to the haproxy command for each service file.
|
|
# This will run haproxy_cmd *exactly once*.
|
|
find /etc/haproxy/services.d/ -mindepth 1 -print0 | \
|
|
xargs -0 -Icfg echo -f cfg | \
|
|
xargs {{ haproxy_cmd }} -p /run/haproxy.pid -f /etc/haproxy/haproxy.cfg
|