kubernetes-ingress icon indicating copy to clipboard operation
kubernetes-ingress copied to clipboard

HAProxy Kubernetes Ingress Controller

Results 163 kubernetes-ingress issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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: / ---...

enhancement

Kustomize looks great but a nice and useful example would be helpful to everyone!

documentation
enhancement

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...

enhancement

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...

enhancement

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...

enhancement

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...

enhancement

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...

enhancement

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...

enhancement

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...

enhancement