Corrected haproxy template. Needed to have a

space between variable and value also the variable name was incorrect
corrected the name throughout playbook
This closes-bug: 1775938

Change-Id: I3920d7d89b74f12a6a7633d5c5c54a27ee029d31
This commit is contained in:
Jake Briggs 2018-06-08 16:48:43 -05:00
parent fc38ff162e
commit c85793ed21
2 changed files with 2 additions and 2 deletions

View File

@ -102,6 +102,6 @@ haproxy_maxconn: 4096
# chksize: 16384
# comp_maxlevel: 1
# http_maxhdr: 101
# http_maxaccept: 64
# maxaccept: 64
# ssl_cachesize: 20000
# ssl_lifetime: 300

View File

@ -14,7 +14,7 @@ global
tune.chksize {{ haproxy_tuning_params.chksize | default('16384') }}
tune.comp.maxlevel {{ haproxy_tuning_params.comp_maxlevel | default('1') }}
tune.http.maxhdr {{ haproxy_tuning_params.http_maxhdr | default('101') }}
tune.http.maxaccept{{ haproxy_tuning_params.http_maxaccept | default('64') }}
tune.maxaccept {{ haproxy_tuning_params.maxaccept | default('64') }}
tune.ssl.cachesize {{ haproxy_tuning_params.ssl_cachesize | default('20000') }}
tune.ssl.lifetime {{ haproxy_tuning_params.ssl_lifetime | default('300') }}
{% endif %}