Recall & Review
beginner
What is a LoadBalancer Service in Kubernetes?
A LoadBalancer Service exposes your application externally using a cloud provider's load balancer. It provides a single IP to access the service directly.
Click to reveal answer
beginner
What is an Ingress in Kubernetes?
An Ingress manages external access to services in a cluster, usually HTTP/HTTPS. It routes traffic based on rules like host or path to different services.
Click to reveal answer
intermediate
When should you choose a LoadBalancer Service over an Ingress?
Choose LoadBalancer when you need a simple, direct external IP per service or when your cloud provider supports it easily.
Click to reveal answer
intermediate
What are the benefits of using Ingress over LoadBalancer Services?
Ingress allows routing multiple services through one external IP, supports SSL termination, and offers flexible traffic rules.
Click to reveal answer
advanced
Can you use both Ingress and LoadBalancer Services together?
Yes, you can use LoadBalancer to expose the Ingress controller itself, which then routes traffic to internal services.
Click to reveal answer
What does a LoadBalancer Service provide in Kubernetes?
✗ Incorrect
A LoadBalancer Service provides a direct external IP to access a specific service from outside the cluster.
Which Kubernetes resource is best for routing HTTP traffic to multiple services based on URL paths?
✗ Incorrect
Ingress is designed to route HTTP/HTTPS traffic to multiple services using rules like URL paths or hostnames.
What is a key advantage of using Ingress over multiple LoadBalancer Services?
✗ Incorrect
Ingress uses a single external IP to route traffic to many services, reducing the number of IPs needed.
How does an Ingress controller relate to a LoadBalancer Service?
✗ Incorrect
Typically, the Ingress controller is exposed externally using a LoadBalancer Service to receive traffic.
Which scenario favors using a LoadBalancer Service instead of Ingress?
✗ Incorrect
LoadBalancer Service is best for simple cases where a single service needs direct external access.
Explain the main differences between Ingress and LoadBalancer Service in Kubernetes.
Think about how external traffic reaches your services.
You got /4 concepts.
Describe a situation where using an Ingress controller with a LoadBalancer Service makes sense.
Consider combining both for scalable external access.
You got /4 concepts.