Increase haproxy timeout for patching

Some patching operations can take a significant amount of time.
Thus, in this commit the haproxy timeouts for
patching-restapi-admin-internal and patching-restapi-internal
are updated to be 600s.

Change-Id: I1b73793c2963be2d1e40634ed6f85d747c6d6985
Story: 2007267
Task: 41944
Signed-off-by: Jessica Castelino <jessica.castelino@windriver.com>
This commit is contained in:
Jessica Castelino 2021-02-26 16:23:35 -05:00
parent fe9fbabef7
commit fab4ea75c0
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
class platform::patching::params (
$private_port = 5491,
$public_port = 15491,
$server_timeout = '300s',
$server_timeout = '600s',
$region_name = undef,
$service_create = false,
) { }
@ -70,6 +70,7 @@ class platform::patching::haproxy
public_ip_address => $::platform::haproxy::params::private_ip_address,
public_port => $private_port + 1,
private_port => $private_port,
server_timeout => $server_timeout,
}
}
}