diff options
author | Jenkins <jenkins@review.openstack.org> | 2015-04-20 15:52:15 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2015-04-20 15:52:15 +0000 |
commit | 20fad5ae9117f529fdc5e0ad15aca78c6a3a59f7 (patch) | |
tree | d56c1c4f799c76d038529d34e6549004749d03b4 /manifests | |
parent | 93b309b2f3b897e1b55634f576706f81b8ccb2e1 (diff) | |
parent | dfcb703bce19c8cc9113c294295de977c51c8e7c (diff) |
Merge "Enable access to HAProxy stats page"
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/loadbalancer.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/loadbalancer.pp b/manifests/loadbalancer.pp index fb2a694..ef90a18 100644 --- a/manifests/loadbalancer.pp +++ b/manifests/loadbalancer.pp @@ -247,11 +247,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, } |