Accessing the Cluster: Adding the Load Balancer
Explore how to add a load balancer to a Kubernetes cluster using kOps add-ons. Learn to deploy ingress-nginx resources, understand LoadBalancer services, and verify integration with AWS ELB for external access.
We'll cover the following...
kOps add-ons
kOps has a solution for the addition of a load balancer. We can use kOps add-ons to deploy additional core services. We can get the list of those currently available by exploring directories in the Github repository. Even though most of them are useful, we’ll focus only on the task at hand.
In most cases, add-ons are Kubernetes resources defined in a YAML file. All we have to do is pick the add-on we want, choose the version we prefer, and execute kubectl create.
We’ll create the resources defined in ingress-nginx version v1.6.0.
Creating resources
We won’t go into details behind the definition YAML file we are about to ...