Increase proxy-connect-timeout to avoid nginx timeout errors

This patch increases the proxy-connect-timeout from 5 to 30 seconds,
avoiding the Bad Gateway 502 error when CLI commands are executed.

Closes-bug: 1908720
Change-Id: I557456e9d0550a906b6d849d682de7ea3f0f42ad
Signed-off-by: hbrito <hugo.brito@windriver.com>
This commit is contained in:
hbrito 2020-12-18 13:52:51 +00:00
parent ed82abff0f
commit b64b020446
1 changed files with 5 additions and 0 deletions

View File

@ -60,6 +60,11 @@ class IngressHelm(base.BaseHelm):
},
},
common.HELM_NS_OPENSTACK: {
'conf': {
'ingress': {
'proxy-connect-timeout': "30"
}
},
'pod': {
'replicas': {
'ingress': self._num_controllers(),