Application load balancer in EKS without ingress controller

0

Hi all, is it possible to create an Application load balancer and attach it to your EKS cluster without the need of an ingress controller?

2 Answers
1

If you want to use ALB and it's features, you would need the ingress controller. If a simple L4 Load Balancer meets your needs, you can use deploy Kubernetes "Service" of LoadBalancer type. It would provision a Classic Load Balancer

--Syd

profile picture
Syd
answered 2 years ago
  • so what I am trying to achieve is having an NLB in front of an ALB in EKS in order to achieve the requirements of supporting HTTPS, having a static ip and attaching the ALB to a pod using a custom nginx image, hence I want to create an ALB without an ingress controller.

0

Have a look at the prerequisites in the EKS documentation for Application load balancing. The AWS Load Balancer Controller must be deployed on your cluster before you can load balance application traffic to an application.

AWS
Michael
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions