话不多说,直接上码:
git clone https://github.com/sz-wuyanzu/ingress.git
拉下来,kubectl apply -f ./
直接用就行了,然后指定机子部署ingress-controller
kubectl label nodes node1(你域名绑定的主机名) custom/ingress-controller-ready=true
出现以上内容表示ingress生效,接下来验证下,
到另一台主机配置hosts,/etc/hosts下加一行:
你绑域名的 ip + 域名
192.168.3.71 myapp.klvchen.com
直接curl myapp.klvchen.com
,搞定。