- 按照课程,在ingress-nginx-controller.yaml 中写死的10.1.211.240的IP
- 执行:kc apply -f ingress-nginx-controller.yaml --validate=false,所有服务节点都正常启动
- 执行:kc create -f ingress-nginx.yaml
- 执行:kc get ing 可以看到 ADDRES 中出现 10.1.211.240
- /etc/hosts 配置 10.1.211.240 hello-world.info
- 但是执行:curl hello-world.info:80,报错 拒绝连接
- 修改 ingress-nginx-controller.yaml 中的10.1.211.240,改为本机IP,报错 provided IP is not in the valid range. The range of valid IPs is 10.1.0.0/16
两个问题:
8. clusterIP: 10.1.211.240 这个配置是做什么用的,一定要用这个IP吗
9. 本机执行 curl hello-world.info:80,报错 拒绝连接 的原因