当 Master 并非 Node 节点前提下
Master 机器 IP 地址: 192.168.1.100
NodePort CLUSTER-IP: 10.96.210.147
Endpoint IP 地址: 10.244.2.241
- master 机器
- 访问 Endpoint 秒回:
curl 10.244.2.241:3000
- 访问 NodePort
curl 10.96.210.147:3000
和 Mastercurl 192.168.1.100:30001
均为 60s 之后返回结果.
- node 节点机
- 访问 Endpoint 秒回
curl 10.244.2.241:3000
- 访问 Master 秒回
curl 192.168.1.100:30001
- 访问 NodePort
curl 10.96.210.147:3000
需要等待 60s 之后返回结果
- 非 node, 非 master 机器
- 访问 Master
curl 192.168.1.100:30001
秒回 - 不能访问其他地址
综上, 使用 Master 访问, 不能再 Master 本机执行.