SylvainVerdy opened a new issue, #971:
URL: https://github.com/apache/apisix-helm-chart/issues/971
Hello,
I’m trying to understand the configuration in `templates/configmap.yaml`.
I noticed this section:
```yaml
keepalive_timeout: {{ .Values.apisix.nginx.keepaliveTimeout | quote }}
client_header_timeout: 60s # timeout for reading client request header,
then 408 (Request Time-out) error is returned to the client
client_body_timeout: 60s # timeout for reading client request body,
then 408 (Request Time-out) error is returned to the client
send_timeout: 10s # timeout for transmitting a response to the
client, then the connection is closed
```
Instead of using a more dynamic configuration like:
```yaml
client_header_timeout: {{ default "60s"
.Values.apisix.nginx.clientHeaderTimeout }}
client_body_timeout: {{ default "60s" .Values.apisix.nginx.clientBodyTimeout
}}
send_timeout: {{ default "10s" .Values.apisix.nginx.sendTimeout }}
```
Why are these values hardcoded instead of being configurable through
`values.yaml`?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]