Ensure haproxy.cfg ends with newline

Versions of Haproxy >=2.3 require the config file to end in a newline
or they'll exit with an error.

Change-Id: I9301ea679536b10ee5ad0d87d42c1655e5852616
This commit is contained in:
Mosher, Jaymes (jm616v) 2022-08-24 18:41:04 -06:00
parent e207bbe966
commit 95a668541c
1 changed files with 2 additions and 0 deletions

View File

@ -42,3 +42,5 @@ backend kube-system-kubernetes-etcd-be
{%- for ip in config.join_ips %}
server s{{ ip }} {{ ip }}:{{ port }} check port {{ port }}
{%- endfor %}
# Haproxy requires config files end with a newline.