mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-29 01:04:15 -04:00 
			
		
		
		
	* Add new plugin: external This plugin works in conjunction with the kubernetes plugin and exports ingress and LB addresses as DNS records. It bypasses backend.go and backend_lookup.go flow because it is not needed. README, tests are implemented. The tests only exercise the unit tests, this has not been tested in any ci. Signed-off-by: Miek Gieben <miek@miek.nl> * Rename to k8s_external Signed-off-by: Miek Gieben <miek@miek.nl> * go gen Signed-off-by: Miek Gieben <miek@miek.nl>
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package kubernetes
 | |
| 
 | |
| import (
 | |
| 	"net"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/miekg/dns"
 | |
| 	api "k8s.io/api/core/v1"
 | |
| )
 | |
| 
 | |
| func isDefaultNS(name, zone string) bool {
 | |
| 	return strings.Index(name, defaultNSName) == 0 && strings.Index(name, zone) == len(defaultNSName)
 | |
| }
 | |
| 
 | |
| // nsAddr return the A record for the CoreDNS service in the cluster. If it fails that it fallsback
 | |
| // on the local address of the machine we're running on.
 | |
| //
 | |
| // This function is rather expensive to run.
 | |
| func (k *Kubernetes) nsAddr() *dns.A {
 | |
| 	var (
 | |
| 		svcName      string
 | |
| 		svcNamespace string
 | |
| 	)
 | |
| 
 | |
| 	rr := new(dns.A)
 | |
| 	localIP := k.interfaceAddrsFunc()
 | |
| 	rr.A = localIP
 | |
| 
 | |
| FindEndpoint:
 | |
| 	for _, ep := range k.APIConn.EpIndexReverse(localIP.String()) {
 | |
| 		for _, eps := range ep.Subsets {
 | |
| 			for _, addr := range eps.Addresses {
 | |
| 				if localIP.Equal(net.ParseIP(addr.IP)) {
 | |
| 					svcNamespace = ep.Namespace
 | |
| 					svcName = ep.Name
 | |
| 					break FindEndpoint
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if len(svcName) == 0 {
 | |
| 		rr.Hdr.Name = defaultNSName
 | |
| 		rr.A = localIP
 | |
| 		return rr
 | |
| 	}
 | |
| 
 | |
| FindService:
 | |
| 	for _, svc := range k.APIConn.ServiceList() {
 | |
| 		if svcName == svc.Name && svcNamespace == svc.Namespace {
 | |
| 			if svc.ClusterIP == api.ClusterIPNone {
 | |
| 				rr.A = localIP
 | |
| 			} else {
 | |
| 				rr.A = net.ParseIP(svc.ClusterIP)
 | |
| 			}
 | |
| 			break FindService
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	rr.Hdr.Name = strings.Join([]string{svcName, svcNamespace, "svc."}, ".")
 | |
| 
 | |
| 	return rr
 | |
| }
 | |
| 
 | |
| const defaultNSName = "ns.dns."
 |