I'm using an AWS NLB to expose my Kubernetes pods to the internet. The NLB is currently using instance
target types but I noticed there are also IP
target types. What are the differences between an instance
target type vs an IP
target type from a practical point of view? When would you use one over the other?
AWS's documentation specifies some restrictions around using IP
target types, namely they must be within certain CIDRs and constraints around maximums, but I'm trying to understand when you might want to use one over the other.
I don't know if it has any impact, but we've been having issues with our kubernetes rollingUpdate
deployments where we're seeing downtime for the pods as they switch over (we have liveness
and readiness
checks there).
Network Load Balancer automatically provides a static IP per Availability Zone (subnet) that can be used by applications as the front-end IP of the load balancer. Network Load Balancer also allows you the option to assign an Elastic IP per Availability Zone (subnet) thereby providing your own fixed IP.
A target group tells a load balancer where to direct traffic to : EC2 instances, fixed IP addresses; or AWS Lambda functions, amongst others. When creating a load balancer, you create one or more listeners and configure listener rules to direct the traffic to one target group.
Yes, the load balancer is an EC2 instance to provide the networking and compute services needed for load balancing. This also means that there is a per hour charge for the load balancer EC2 instance. A Target Group is used to route requests to one or more registered targets (your backed EC2 instances).
The three key use-cases for using IP target type:
Instance target type is only limited instances. It should be your default choice when load balancing instances. For example, if you have instances in autoscaling group (ASG), the ASG can automatically register your instances with your load balancer. You can't do this for IP target types.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With