Configure Internal Network Load Balancer¶
You can set the value of service.beta.kubernetes.io/aws-load-balancer-scheme annotation to internal to create an internal network load balancer.
Note
If you have microservices on instances that are registered with a Network Load Balancer, you can't use the load balancer to provide communication between them unless the load balancer is internet-facing or the instances are registered by IP address. For more information, see Connections time out for requests from a target to its load balancer.
Therefore, we will use ip target type for this example.
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 /healthReturns health status of the appGET /randomReturns 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:
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.
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 NLB type. It should be internal.
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: Access App Using Internal Load Balancer DNS¶
Because the network load balancer is internal, access to our app from outside the VPC is restricted. To overcome this, let's create a pod that we can use to access the load balancer and, in turn, our app. Since the pod will reside within the same VPC, we will be able to access our app.
First, let's create a pod as follows:
Apply the manifest to create the pod:
Now, let's start a shell session inside the nginx container and hit the internal load balancer url:
# Start a shell session inside the nginx container
kubectl exec -it nginx -- bash
# Hit the load balancer url using CURL
curl <internal-nlb-dns>
You'll see the response from the app.
Tip
Set target-type to instance and try to access the internal nlb dns from nginx pod. It will succeed for some of the requests while it will fail for others.
Change the target-type to ip and try to access the internal nlb dns. It should work fine without any timeouts.
Clean Up¶
Assuming your folder structure looks like the one below:
Let's delete all the resources we created: