Skip to content

Commit 375ca95

Browse files
committed
Make nginx timeout configurable in helm chart
Signed-off-by: Dmitriy Barbul <[email protected]>
1 parent 79cafdc commit 375ca95

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

deployment/helm/ditto/templates/nginx-configmap.yaml

+4-5
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ data:
3131
include mime.types;
3232
server_tokens off;
3333
34-
# timeouts are configured slightly higher than ditto-eclipse-ditto-gateway read-timeout of 60 seconds
35-
proxy_connect_timeout 70; # seconds, default: 60
36-
proxy_send_timeout 70; # seconds, default: 60
37-
proxy_read_timeout 70; # seconds, default: 60
34+
proxy_connect_timeout {{ .Values.nginx.config.timeout }}; # seconds, default: 60
35+
proxy_send_timeout {{ .Values.nginx.config.timeout }}; # seconds, default: 60
36+
proxy_read_timeout {{ .Values.nginx.config.timeout }}; # seconds, default: 60
3837
# will try another upstream if an error or timeout occurred during the connection
3938
# or if the upstream returns 502 response
4039
proxy_next_upstream error timeout http_502;
@@ -43,7 +42,7 @@ data:
4342
# will try for max. 20s to find another upstream to connect to
4443
proxy_next_upstream_timeout 20;
4544
46-
send_timeout 70; # seconds, default: 60
45+
send_timeout {{ .Values.nginx.config.timeout }}; # seconds, default: 60
4746
4847
client_header_buffer_size 8k; # allow longer URIs + headers (default: 1k)
4948
large_client_header_buffers 4 16k;

deployment/helm/ditto/values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -1679,6 +1679,9 @@ nginx:
16791679
workerProcesses: 4
16801680
# workerProcesses the 'events' 'worker_connections' option for nginx to use
16811681
workerConnections: 1024
1682+
# the 'proxy_connect_timeout', 'proxy_send_timeout', 'proxy_read_timeout' and 'send_timeout' options for nginx
1683+
# timeouts are configured slightly higher than ditto-eclipse-ditto-gateway read-timeout
1684+
timeout: 70
16821685

16831686
## ----------------------------------------------------------------------------
16841687
## Ditto UI configuration

0 commit comments

Comments
 (0)