kubernetes-ingress
kubernetes-ingress copied to clipboard
HAProxy Kubernetes Ingress Controller
Our company operates k8s in a highly multi-tenant fasion where each team/project have isolated namespaces running their own ingress controllers. There is no cluster-global ingress controller deployment and most users...
Hi, Given the following set of manifests (shortened to relevant parts) ``` kind: Ingress spec: rules: - host: foo.bar.com http: paths: - backend: serviceName: foo-app servicePort: http path: / ---...
Kustomize looks great but a nice and useful example would be helpful to everyone!
the ingress rule may say "route path /foobar to service foobar" and so HAProxy would do that. That said, it is possible that the service itself on the application server...
In order to prevent clients from sending too big bodies, would be great to allow HAProxy to buffer the request body and check its size against a value passed in...
Canary testing is kind of hard to do in the current way HAProxy works. Take example in this nginx related article: https://medium.com/@domi.stoehr/canary-deployments-on-kubernetes-without-service-mesh-425b7e4cc862 Here, an annotation enables the developer and/or cherry...
In many settings it is useful to match on hosts as `foo.*`. This is not a valid a `host` specification and such an `Ingress` gets rejected by `kubernetes`. It would...
Server side connection pooling is a great feature that may help saving resources on some application servers. Would be great to see it enabled in HAProxy. Note that this could...
Option abortonclose is useful in some cases to avoid sending a request to a server when the client closed the connection. this option should: - available both globally and locally...
In some environment, using SNI to pick up right CRT is not sufficient and some people may need to bind multiple IPs on port 443, each of them associated to...