InterviewSolution
Saved Bookmarks
| 1. |
What is Kubernetes Load Balancing? |
|
Answer» Load Balancing is one of the most common and standard ways of exposing the services. There are two types of load balancing in K8S and they are: INTERNAL load balancer – This type of balancer automatically balances LOADS and allocates the pods with the REQUIRED incoming load. EXTERNAL Load Balancer – This type of balancer directs the traffic from the external loads to backend pods. |
|