Step 5: Create a Load Balancer

Create a load balancer to access your application

Now that your DuploCloud Service is running, you have a mechanism to expose the containers and images in which your application resides. But because your containers are running inside a private network, you also need a load balancer to listen on the correct ports in order to access the application.

In this step, we add a Load Balancer Listener to complete this network configuration.

Estimated time to complete Step 5: 20 minutes.

Prerequisites

Before creating your DuploCloud load balancer, ensure that:

Adding and configuring a load balancer

Add a load balancer for your running service that listens on port 80:

  1. In the DuploCloud Portal, navigate to DevOps -> Containers -> AKS / Native.

  2. In the Services tab, select the nginx-service you started when creating a service in the previous step.

  3. Click the Load Balancers tab.

  4. Click the Configure Load Balancer link. The Add Load Balancer Listener pane displays.

  5. Select K8S Node Port from the Select Type list box.

  6. Enter 80 in the Container port field.

  7. Enter 30008 in the External port field.

  8. Type / (forward-slash) in the Health Check field to indicate that the cluster we want Kubernetes to perform Health Checks on is located at the root level.

  9. Select TCP from the Backend Protocol list box.

  10. Click Add. The Load Balancer is created and started. After a few minutes, the LB Status card displays a status of Ready, indicating that the Load Balancer is ready for use.

Enable the Ingress Controller

When we created the Load Balancer Listener, we used the K8S Node Port type, which leverages the capabilities of the Kubernetes Ingress object.

Ingress is an entry point that front-ends multiple services in a cluster. It can be defined as a collection of routing rules that governs how external users access services running inside a Kubernetes cluster. One of the greatest benefits of Ingress is its ability to secure the network traffic to your application. With Ingress, you can define a TLS private key and certificates by leveraging Kubernetes Secrets, instead of directly defining TLS details in the Ingress resource.

To use Ingress, you first enable the Kubernetes Ingress Controller to open the application gateway for Ingress.

  1. In the DuploCloud Portal, navigate to Administrator -> Infrastructure.

  2. Select your Infrastructure from the Name column.

  3. Click the Settings tab.

  4. Click Add. The Infra-Set Custom Data pane displays.

  5. In the Setting Name field, select Enable App Gateway Ingress Controller.

  6. Click Enable.

  7. Click Set. In the Settings tab, the Enable App Gateway Ingress Controller setting now contains the true in the Value column.

Add Kubernetes Ingress

Now that your gateway is established and opened, you add Kubernetes Ingress to expose the backend HTTP routes outside the cluster to your service.

The Ingress object communicates with the Kubernetes NodePort that your Load Balancer Listener uses. Ingress objects are flexible constructs in Kubernetes, and their use here is an example of how DuploCloud leverages the power of Kubernetes constructs while abstracting away their native complexity. To manually create these components (and maintain them) in Kubernetes, takes a significant amount of developer time.

  1. In the DuploCloud Portal, navigate to DevOps -> Containers -> AKS / Native.

  2. Click the K8S Ingress tab.

  3. Click Add. The Add Kubernetes Ingress page displays.

  4. In the Ingress Name field, type viewwebsite.

  5. In the Ingress Controller list box, select azure-application-gateway.

  6. In the Visibility list box, select Public.

  7. Click Add Rule. The Add Ingress Rule pane displays.

  8. In the Path field, type / (forward-slash).

  9. In the Service Name field, select nginx-service:80.

  10. Click Add Rule to add the rule and to close the Add Ingress Rule pane. You should be back to viewing the Add Kubernetes Ingress page.

  11. On the Add Kubernetes Ingress page, click Add to add Ingress. On the K8S Ingress tab, the VIEWWEBSITE Ingress that you defined, with an Ingress Class of azure-application-gateway, displays.

Check your work

Before you proceed to the final step and run your application, ensure that you:

Last updated

Logo

© DuploCloud, Inc. All rights reserved. DuploCloud trademarks used herein are registered trademarks of DuploCloud and affiliates