Kubernetes 中没有负载均衡器的 Nginx 入口控制器
Nginx ingress controller without load balancer in Kubernetes
我们可以在没有负载均衡器的情况下使用 nginx 入口控制器吗?如果是这样,需要采取什么措施来设置入口控制器?
Can we use nginx ingress controller without loadbalancer?
当然可以
If so what are the measures that needs to be taken to setup the ingress controller?
要设置吗? helm
安装它(或任何你想要的机制),并确保它的 Service
是 type: NodePort
。那么,curl -H 'host: my-virtual-host.example.org' http://${node_ip_address}:${http_node_port}
我们可以在没有负载均衡器的情况下使用 nginx 入口控制器吗?如果是这样,需要采取什么措施来设置入口控制器?
Can we use nginx ingress controller without loadbalancer?
当然可以
If so what are the measures that needs to be taken to setup the ingress controller?
要设置吗? helm
安装它(或任何你想要的机制),并确保它的 Service
是 type: NodePort
。那么,curl -H 'host: my-virtual-host.example.org' http://${node_ip_address}:${http_node_port}