Replacing AWS ELB in K8 cluster

1/31/2017

I have a k8 cluster deployed in AWS using kube-aws. When I deploy a service, a new ELB is added for exposing the service to internet. Can I use ingress-controller to replace ELB or is there any other way to expose services other than ELB?

-- Alagunambi Welkin
amazon-web-services
kube-aws
kubectl
kubernetes

1 Answer

1/31/2017

First, replace type: LoadBalancer with type: ClusterIP in your service definition. Then you have to configure the ingress and deploy a controller, like Nginx

If you are looking for a full example, I have one here: nginx-ingress-controller.

The ingress will expose you services using some of your workers public IPs, usually 2 of them. Just check your ingress kubectl get ing -o wide and create the DNS records.

-- Camil
Source: StackOverflow