K8s 线上采坑 02 NodePort 访问不通采坑

当 Master 并非 Node 节点前提下

Master 机器 IP 地址: 192.168.1.100

NodePort CLUSTER-IP: 10.96.210.147

Endpoint IP 地址: 10.244.2.241

  1. master 机器
  • 访问 Endpoint 秒回: curl 10.244.2.241:3000
  • 访问 NodePort curl 10.96.210.147:3000 和 Master curl 192.168.1.100:30001 均为 60s 之后返回结果.
  1. node 节点机
  • 访问 Endpoint 秒回 curl 10.244.2.241:3000
  • 访问 Master 秒回 curl 192.168.1.100:30001
  • 访问 NodePort curl 10.96.210.147:3000 需要等待 60s 之后返回结果
  1. 非 node, 非 master 机器
  • 访问 Master curl 192.168.1.100:30001 秒回
  • 不能访问其他地址

综上, 使用 Master 访问, 不能再 Master 本机执行.

Donate - Support to make this site better.
捐助 - 支持我让我做得更好.