Ingress vs Load Balancer

前端 未结 7 1585
自闭症患者
自闭症患者 2020-12-02 03:57

I am quite confused about the roles of Ingress and Load Balancer in Kubernetes.

As far as I understand Ingress is used to map incoming traffic from the internet to t

7条回答
  •  萌比男神i
    2020-12-02 04:23

    In simple words, load balancer distributes the requests among multiple backend services (of same type) whereas ingress is more like an API gateway (reverse proxy) which routes the request to a specific backend service based on, for instance, the URL.

提交回复
热议问题