Merge "Fix grafana listener options to allow affinity"

This commit is contained in:
Zuul 2019-12-04 21:35:36 +00:00 committed by Gerrit Code Review
commit 7e922b0f85
1 changed files with 4 additions and 1 deletions

View File

@ -1025,7 +1025,10 @@ class tripleo::haproxy (
server_names => hiera('ceph_grafana_node_names', $controller_hosts_names_real),
mode => 'http',
public_ssl_port => $ports[ceph_grafana_ssl_port],
listen_options => merge($default_listen_options, { 'option' => [ 'httpchk HEAD /' ] }),
listen_options => merge($default_listen_options, {
'option' => [ 'httpchk HEAD /' ],
'balance' => 'source',
}),
service_network => $ceph_grafana_network,
member_options => union($haproxy_member_options, $internal_tls_member_options),
}