Nginx ingress controller without load balancer in Kubernetes

2/4/2019

Can we use nginx ingress controller without loadbalancer? If so what are the measures that needs to be taken to setup the ingress controller?

-- Shibily Shukoor
amazon-eks
google-kubernetes-engine
kubernetes
kubernetes-ingress

1 Answer

2/5/2019

Can we use nginx ingress controller without loadbalancer?

Yes, of course

If so what are the measures that needs to be taken to setup the ingress controller?

To set it up? helm install it (or whatever mechanism you want), and ensure its Service is type: NodePort. Then, curl -H 'host: my-virtual-host.example.org' http://${node_ip_address}:${http_node_port}

-- mdaniel
Source: StackOverflow