Merge "Add flag to enable/disable the HAProxy stats interface"

This commit is contained in:
Jenkins 2017-06-27 06:01:25 +00:00 committed by Gerrit Code Review
commit 86c2e0c0c8
2 changed files with 9 additions and 0 deletions

View File

@ -38,6 +38,10 @@ parameters:
default: /dev/log
description: Syslog address where HAproxy will send its log
type: string
HAProxyStatsEnabled:
default: true
description: Whether or not to enable the HAProxy stats interface.
type: boolean
RedisPassword:
description: The password for Redis
type: string
@ -95,6 +99,7 @@ outputs:
tripleo::haproxy::redis_password: {get_param: RedisPassword}
tripleo::haproxy::ca_bundle: {get_param: InternalTLSCAFile}
tripleo::haproxy::crl_file: {get_param: InternalTLSCRLPEMFile}
tripleo::haproxy::haproxy_stats: {get_param: HAProxyStatsEnabled}
tripleo::profile::base::haproxy::certificates_specs:
map_merge:
- get_attr: [HAProxyPublicTLS, role_data, certificates_specs]

View File

@ -0,0 +1,4 @@
---
features:
- The HAProxy stats interface can now be enabled/disabled with the
HAProxyStatsEnabled flag. Note that it's still enabled by default.