Can somebody explain whay I have to use external (MetalLB, HAProxy etc) Load Balancer with Bare-metal kubernetes cluster?

4/8/2021

For instance, I have a bare-metal cluster with 3 nodes ich with some instance exposing the port 105. In order to expose it on external Ip address I can define a service of type NodePort with "externalIPs" and it seems to work well. In the documentation it says to use a load balancer but I didn't get well why I have to use it and I worried to do some mistake.

-- dred dred
kubernetes
kubernetes-ingress

1 Answer

4/19/2021

Can somebody explain whay I have to use external (MetalLB, HAProxy etc) Load Balancer with Bare-metal kubernetes cluster?

You don't have to use it, it's up to you to choose if you would like to use NodePort or LoadBalancer.


Let's start with the difference between NodePort and LoadBalancer.

NodePort is the most primitive way to get external traffic directly to your service. As the name implies, it opens a specific port on all the Nodes (the VMs), and any traffic that is sent to this port is forwarded to the service.

LoadBalancer service is the standard way to expose a service to the internet. It gives you a single IP address that will forward all traffic to your service.

You can find more about that in kubernetes documentation.


As for the question you've asked in the comment, But NodePort with "externalIPs" option is doing exactly the same. I see only one tiny difference is that the IP should be owned by one of the cluster machin. So where is the profit of using a loadBalancer? let me answer that more precisely.

There are the advantages & disadvantages of ExternalIP:

The advantages of using ExternalIP is:

You have full control of the IP that you use. You can use IP that belongs to your ASN >instead of a cloud provider’s ASN.

The disadvantages of using ExternalIP is:

The simple setup that we will go thru right now is NOT highly available. That means if the node dies, the service is no longer reachable and you’ll need to manually remediate the issue.

There is some manual work that needs to be done to manage the IPs. The IPs are not dynamically provisioned for you thus it requires manual human intervention


Summarizing the pros and cons of both, we can conclude that ExternalIP is not made for a production environment, it's not highly available, if node dies the service will be no longer reachable and you will have to manually fix that.

With a LoadBalancer if node dies the service will be recreated automatically on another node. So it's dynamically provisioned and there is no need to configure it manually like with the ExternalIP.

-- Jakub
Source: StackOverflow