You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there are configurations that can be set at ingress resource level in form of various annotations. But one important property of maxconn per backend server which is supported by haproxy but not available as an option to set as an annotation at ingress resource level.
Annotation can be something like
ingress.kubernetes.io/max-connections : 1
example expected haproxy configuration with maxconn:
backend exampleAppBackEnd
balance roundrobin
server app1 10.0.0.1:8080 maxconn 1
server app2 10.0.0.2:8080 maxconn 1
server app3 10.0.0.3:8080 maxconn 1
The text was updated successfully, but these errors were encountered:
Currently there are configurations that can be set at ingress resource level in form of various annotations. But one important property of maxconn per backend server which is supported by haproxy but not available as an option to set as an annotation at ingress resource level.
Annotation can be something like
ingress.kubernetes.io/max-connections : 1
example expected haproxy configuration with maxconn:
The text was updated successfully, but these errors were encountered: