Network Load Balancer With Multiple Listeners¶
You can create multiple listener rules in NLB by specifying multiple ports
in the kubernetes service definition.
For each listener, one target group will be created.
Prerequisite¶
To follow this tutorial, you'll require a domain and, additionally, an SSL certificate for the domain and its subdomains.
-
Register a Route 53 Domain
Go to AWS Console and register a Route 53 domain. You can opt for a cheaper TLD (top level domain) such as
.link
Note
It usually takes about 10 minutes but it might take about an hour for the registered domain to become available.
-
Request a Public Certificate
Visit AWS Certificate Manager in AWS Console and request a public certificate for your domain and all the subdomains. For example, if you registered for a domain
example.com
then request certificate forexample.com
and*.example.com
Note
Make sure you request the certificate in the region where your EKS cluster is in.
-
Validate the Certificate
Validate the requested certificate by adding
CNAME
records in Route 53. It is a very simple process. Go to the certificate you created and click onCreate records in Route 53
. TheCNAMEs
will be automatically added to Route 53.Note
It usually takes about 5 minutes but it might take about an hour for the certificate to be ready for use.
Now that you have everything you need, let's move on to the demonstration.
Docker Images¶
Here is the Docker Image used in this tutorial: reyanshkharga/nodeapp:v1
Note
reyanshkharga/nodeapp:v1 runs on port 5000
and has the following routes:
GET /
Returns host info and app versionGET /health
Returns health status of the appGET /random
Returns a randomly generated number between 1 and 10
Step 1: Create a Deployment¶
First, let's create a deployment as follows:
Apply the manifest to create the deployment:
Verify deployment and pods:
Step 2: Create a LoadBalancer Service¶
Let's create a LoadBalancer
service as follows:
Be sure to replace the value of alb.ingress.kubernetes.io/certificate-arn
with the ARN
of the SSL certificate you created.
Apply the manifest to create the service:
Verify service:
Note that we are offloading the reconciliation to AWS Load Balancer Controller using the service.beta.kubernetes.io/aws-load-balancer-type: external
annotation.
For each item in the .spec.ports
a listener rule and corresponding target group will be created.
Step 3: Verify AWS Resources in AWS Console¶
Visit the AWS console and verify the resources created by AWS Load Balancer Controller.
Pay close attention to the listener rules and target groups that were created.
Note that the Load Balancer takes some time to become Active
.
Also, verify that the NLB was created by AWS Load Balancer Controller
. You can check the events in the logs as follows:
kubectl logs -f deploy/aws-load-balancer-controller -n aws-load-balancer-controller --all-containers=true
Step 4: Add Record in Route 53¶
Go to AWS Route 53 and add an A
record (e.g api.example.com
) for your domain that points to the Network Load Balancer. You can use alias to point the subdomain to the network load balancer that was created.
Step 5: Access App Using Route 53 DNS¶
Once the load balancer is in Active
state, you can hit the subdomain you created in Route 53 and verify if everything is working properly.
Try accessing the following paths:
# Root path
http://api.example.com/
https://api.example.com/
# Health path
http://api.example.com/health
https://api.example.com/health
# Random generator path
http://api.example.com/random
https://api.example.com/random
How about redirecting HTTP to HTTPS?
AWS Network Load Balancer cannot handle layer 7 thus cannot redirect HTTP
to HTTPS
.
Clean Up¶
Assuming your folder structure looks like the one below:
Let's delete all the resources we created: