可以为kubernetes主机网络Pod选择内部IP

时间:2018-09-18 21:35:34

标签: kubernetes

我的kubernetes节点有两个内部IP

status:
  addresses:
  - address: 10.10.96.70
    type: ExternalIP
  - address: 10.10.97.77
    type: InternalIP
  - address: 10.10.96.70
    type: InternalIP

当我部署主机网络Pod时,始终使用第一个内部IP(10.10.97.77)。可以改用第二个内部IP吗?

1 个答案:

答案 0 :(得分:1)

您可以使用--node-ip string选项覆盖kubelet。

--node-ip string
IP address of the node. If set, kubelet will use this IP address for the node

更多信息here