GetAllAddressesForProxy returns a k8s service's all addresses to the cluster where the node resides. Especially for dual stack k8s service to get other IP family addresses.
(node *Proxy)
| 1860 | // GetAllAddressesForProxy returns a k8s service's all addresses to the cluster where the node resides. |
| 1861 | // Especially for dual stack k8s service to get other IP family addresses. |
| 1862 | func (s *Service) GetAllAddressesForProxy(node *Proxy) []string { |
| 1863 | return s.getAllAddressesForProxy(node) |
| 1864 | } |
| 1865 | |
| 1866 | // nodeUsesAutoallocatedIPs checks to see if this node is eligible to consume automatically allocated IPs |
| 1867 | func nodeUsesAutoallocatedIPs(node *Proxy) bool { |