What is that field and why do you need it filled?
In kubernetes when you enter this code , you can see all nodes in the cluster: kubectl get nodes -o wide I using a component in the backend that read external ip from this field and run several server pods listening to this external ip. This component is complex and I can't change to read from somewhere else. My external ip field is <none>. and it is the problem. this component use internal ip like 192.168.42.53 and I don want this. I want this component use external ip The problem is if this component see external ip is <none> then use internal ip instead. all pod server in worker node 2 will be 192.168.1.52 and all pod servers in worker node 1 will be 192.168.1.51 I don't want to loadbalancing If external ip works every pod servers will be have same ip I don't care about the ip type public or private If I can fill this field(external ip) with an internal ip like 192.168.1.60 Because all pod will be have same ip And I have this ability to portforwading without any loadbalancing It is good [Main Question]: how I can set external ip for kubernetes?
Обсуждают сегодня