Nginx ingress controller vs HAProxy load balancer
Asked Answered
S

1

12

What is the difference between Nginx ingress controller and HAProxy load balancer in kubernetes?

Shatzer answered 14/3, 2019 at 15:29 Comment(0)
C
15

First, let's have a quick overview of what an Ingress Controller is in Kubernetes.

  • Ingress Controller: controller that responds to changes in Ingress rules and changes its internal configuration accordingly

So, both the HAProxy ingress controller and the Nginx ingress controller will listen for these Ingress configuration changes and configure their own running server instances to route traffic as specified in the targeted Ingress rules. The main differences come down to the specific differences in use cases between Nginx and HAProxy themselves.

For the most part, Nginx comes with more batteries included for serving web content, such as configurable content caching, serving local files, etc. HAProxy is more stripped down, and better equipped for high-performance network workloads.

The available configurations for HAProxy can be found here and the available configuration methods for Nginx ingress controller are here.

I would add that Haproxy is capable of doing TLS / SSL offloading (SSL termination or TLS termination) for non-http protocols such as mqtt, redis and ftp type workloads.

The differences go deeper than this, however, and these issues go into more detail on them:

  1. https://serverfault.com/questions/229945/what-are-the-differences-between-haproxy-and-ngnix-in-reverse-proxy-mode
  2. HAProxy vs. Nginx
Cattish answered 14/3, 2019 at 18:13 Comment(6)
my question is what is diffrent between ingress and load balancer.forexample what is diffrent between ingress controller and loadbalancerShatzer
The difference is that a LoadBalancer will create a cloud-specific LB (so, a GCLB in GCP, an ELB on AWS, etc etc) that exposes a single service to the outside world. An ingress controller listens for the creation of Ingress objects, and hacks its internal configuration based on those changes (e.g. Nginx controller sees new Ingress that should route traffic from www.hello.com to service hello, and will configure the Nginx server running in the Deployment to do so).Cattish
Then, you can create a LoadBalancer that exposes the nginx-ingress-controller or haproxy-ingress-controller Deployment to the outside world. Does that make more sense?Cattish
i do not want to use cloud load balancer.what should i do? thanksShatzer
There are a few options for that (using MetalLB, NodePort service) that are outlined here: kubernetes.github.io/ingress-nginx/deploy/baremetalCattish
@yasinlachini there is a good blog to help you haproxy.com/blog/…Treasurer

© 2022 - 2024 — McMap. All rights reserved.