mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 02:03:20 -04:00 
			
		
		
		
	
		
			
	
	
		
			41 lines
		
	
	
		
			719 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			41 lines
		
	
	
		
			719 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package kubernetes
 | ||
|  | 
 | ||
|  | import "net"
 | ||
|  | 
 | ||
|  | func localPodIP() net.IP {
 | ||
|  | 	addrs, err := net.InterfaceAddrs()
 | ||
|  | 	if err != nil {
 | ||
|  | 		return nil
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	for _, addr := range addrs {
 | ||
|  | 		ip, _, _ := net.ParseCIDR(addr.String())
 | ||
|  | 		ip = ip.To4()
 | ||
|  | 		if ip == nil || ip.IsLoopback() {
 | ||
|  | 			continue
 | ||
|  | 		}
 | ||
|  | 		return ip
 | ||
|  | 	}
 | ||
|  | 	return nil
 | ||
|  | }
 | ||
|  | 
 | ||
|  | func (k *Kubernetes) localNodeName() string {
 | ||
|  | 	localIP := k.interfaceAddrsFunc()
 | ||
|  | 	if localIP == nil {
 | ||
|  | 		return ""
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	// Find endpoint matching localIP
 | ||
|  | 	endpointsList := k.APIConn.EndpointsList()
 | ||
|  | 	for _, ep := range endpointsList.Items {
 | ||
|  | 		for _, eps := range ep.Subsets {
 | ||
|  | 			for _, addr := range eps.Addresses {
 | ||
|  | 				if localIP.Equal(net.ParseIP(addr.IP)) {
 | ||
|  | 					return *addr.NodeName
 | ||
|  | 				}
 | ||
|  | 			}
 | ||
|  | 		}
 | ||
|  | 	}
 | ||
|  | 	return ""
 | ||
|  | }
 |