简体   繁体   中英

Nginx ingress controller without load balancer in Kubernetes

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

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}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM