Change HAproxy for Glance API service

When uploading a big image (usually a RAW), the upload fails to happen
because of HAproxy timeout.
We need to change the HAproxy configuration to use another mode and also
increase the timeout to 2 hours (should be enough for regular images).

Closes-bug #503
This commit is contained in:
Emilien Macchi 2014-06-09 19:15:43 +02:00
parent ae843faa2a
commit cf37d23770

View File

@ -319,8 +319,13 @@ class cloud::loadbalancer(
httpchk => 'httpchk GET /';
}
cloud::loadbalancer::binding { 'glance_api_cluster':
ip => $glance_api,
port => $ks_glance_api_public_port;
ip => $glance_api,
options => {
'balance' => 'leastconn',
'timeout server' => '120m',
'timeout client' => '120m',
},
port => $ks_glance_api_public_port;
}
cloud::loadbalancer::binding { 'glance_registry_cluster':
ip => $glance_registry,