updated haproxy state
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2024-03-13 13:19:21 +01:00
parent ad4142c45b
commit 2b42f3b478

View File

@ -280,6 +280,11 @@ backend {{ name }} from {{ haproxy.config.namespace }}
http-check {{ step }}
{%- endfor %}
{%- endif %}
{%- if values.usecache|default(True) %}
{{ cache() }}
{%- endif %}
{%- if values.overrides|default([]) %}
{%- for override in values.overrides %}
{{ override }}
@ -293,10 +298,6 @@ backend {{ name }} from {{ haproxy.config.namespace }}
{{ compression() }}
{%- endif %}
{%- if values.usecache|default(True) %}
{{ cache() }}
{%- endif %}
{%- if values.internal|default(False) %}
{{ internal() }}
{%- endif %}