Make haproxy-anchor cleanup optional

Continuation of Ia1449d188c15b71dd756e96b1ea2d4a672011a17.

This patch creates the additional var "conf.anchor.enable_cleanup"
that is true by default. False value will effectively
disable cleanup procedure.

Change-Id: I7f74454190dcd1d563d6cb3c9fef8504a3e0806a
This commit is contained in:
Andrey Volkov 2018-10-03 13:44:02 -07:00
parent bd9a1b00ca
commit b26c2cfeff
2 changed files with 3 additions and 0 deletions

View File

@ -124,7 +124,9 @@ cleanup() {
while true; do
if [ -e /tmp/stop ]; then
echo Stopping
{%- if .Values.conf.anchor.enable_cleanup %}
cleanup
{%- end %}
break
fi

View File

@ -41,6 +41,7 @@ conf:
- mode tcp
- option tcp-check
- option redispatch
enable_cleanup: true
haproxy:
container_config_dir: /usr/local/etc/haproxy