Please enable JavaScript.
Coggle requires JavaScript to display documents.
Networking, Ingress Controller, Service type - Coggle Diagram
Networking
Ingress Controller
Layer 7 load balancing for one or more services
Use host header and path evaluation to direct traffic
External accessible
Configured with Ingress object
Service type
ClusterIP
Exposes the Service on a cluster-internal IP
the Service only reachable from within the cluster
a virtual IP address that load balance requests to set of backend port
NodePort
Exposes the Service on each Node's IP at a static port
Used for external-facing service
Leverage ClusterIP for load balancing to port
LoadBalancer
Exposes the Service externally using an external load balancer
Implementation
leverage Nodeport for traffic ingress
leverage ClusterIP for load balancing to port
available for different LB plugin