You are looking at the documentation of a prior release. To read the documentation of the latest release, please visit here.
Custom timeouts can be configured for HAProxy via annotations. Supports all valid timeout option for defaults section of HAProxy. Read More
ingress.appscode.com/default-timeout
expects a JSON encoded map of timeouts values.
Ingress Example:
apiVersion: voyager.appscode.com/v1beta1
kind: Ingress
metadata:
name: test-ingress
namespace: default
annotations:
ingress.appscode.com/default-timeout: '{"connect": "5s", "server": "10s"}'
spec:
backend:
serviceName: test-service
servicePort: '80'
rules:
- host: appscode.example.com
http:
paths:
- backend:
serviceName: test-service
servicePort: '80'
This ingress will generate a HAProxy template with provided timeouts. like
defaults
log global
option http-server-close
option dontlognull
# Timeout values
# timeout {{ key }} {{ value }}
timeout connect 5s
timeout server 10s
timeout client 50s
timeout client-fin 50s
timeout tunnel 50s
If any required timeouts is not provided timeouts will be populated with the following values.
timeout connect 50s
timeout client 50s
timeout client-fin 50s
timeout server 50s
timeout tunnel 50s
These timeout values are generally expressed in milliseconds (unless explicitly stated otherwise) but may be expressed in any other unit by suffixing the unit to the numeric value. It is important to consider this because it will not be repeated for every keyword. Supported units are :
ingress.appscode.com/default-timeout: '{"client": "5s"}'