From the course: Running Kubernetes on AWS (EKS)

Unlock the full course today

Join today to access over 24,900 courses taught by industry experts.

Create an Ingress for your application

Create an Ingress for your application

From the course: Running Kubernetes on AWS (EKS)

Create an Ingress for your application

- [Instructor] In the last video, you installed the AWS load balancer controller, but when you looked in the console to find your new load balancer, there was nothing there. That's because there are a couple more steps in order to create an Elastic Load Balancer. In this video, you'll see how. First, you must have IngressClassParams, and an IngressClass. The configuration for this is in the ingress-class.yaml file. There are two resources defined here. These are required for the load balancer controller to connect with your application ingress. You can create these custom resources with the command kubectl apply -f ingress-class.yaml. Now, to the ingress for your application. This file is called pod-info-ingress.yaml. Take a look through the file. You are creating a Kubernetes ingress with a name pod=info in the staging namespace. The annotations sections has some configuration for the load balancer controller.…

Contents