Enable access to HAProxy stats page

Enable access to the HAProxy stats page. The listen directive is bound
to the controller virtual IP address.

Change-Id: Ie0012da77ffdd9bfa8f06341aca2d70991558a28
This commit is contained in:
Yanis Guenane 2015-04-09 10:01:24 +02:00
parent 72e8834efa
commit dfcb703bce
1 changed files with 2 additions and 2 deletions

View File

@ -242,11 +242,11 @@ class tripleo::loadbalancer (
}
haproxy::listen { 'haproxy.stats':
ipaddress => '*',
ipaddress => $controller_virtual_ip,
ports => '1993',
mode => 'http',
options => {
'stats' => 'enable',
'stats' => ['enable', 'uri /'],
},
collect_exported => false,
}