| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | package kubernetes | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2016-08-05 18:19:51 -07:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2018-03-09 19:55:43 +00:00
										 |  |  | 	"flag" | 
					
						
							| 
									
										
										
										
											2016-08-08 14:30:04 -07:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2018-03-09 19:55:43 +00:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2017-08-27 01:32:46 +01:00
										 |  |  | 	"strconv" | 
					
						
							| 
									
										
										
										
											2016-07-07 01:40:58 -07:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2016-08-05 18:19:51 -07:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-21 22:51:47 -08:00
										 |  |  | 	"github.com/coredns/coredns/core/dnsserver" | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin" | 
					
						
							| 
									
										
										
										
											2018-02-28 08:43:19 -08:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/dnsutil" | 
					
						
							| 
									
										
										
										
											2018-04-22 21:40:33 +01:00
										 |  |  | 	clog "github.com/coredns/coredns/plugin/pkg/log" | 
					
						
							| 
									
										
										
										
											2018-02-08 10:11:04 -06:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/parse" | 
					
						
							| 
									
										
										
										
											2018-02-14 15:11:26 -05:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/upstream" | 
					
						
							| 
									
										
										
										
											2018-02-28 08:43:19 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	"github.com/mholt/caddy" | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	"github.com/miekg/dns" | 
					
						
							|  |  |  | 	meta "k8s.io/apimachinery/pkg/apis/meta/v1" | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-22 21:40:33 +01:00
										 |  |  | var log = clog.NewWithPlugin("kubernetes") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | func init() { | 
					
						
							| 
									
										
										
										
											2018-03-09 19:55:43 +00:00
										 |  |  | 	// Kubernetes plugin uses the kubernetes library, which uses glog (ugh), we must set this *flag*, | 
					
						
							|  |  |  | 	// so we don't log to the filesystem, which can fill up and crash CoreDNS indirectly by calling os.Exit(). | 
					
						
							|  |  |  | 	// We also set: os.Stderr = os.Stdout in the setup function below so we output to standard out; as we do for | 
					
						
							|  |  |  | 	// all CoreDNS logging. We can't do *that* in the init function, because we, when starting, also barf some | 
					
						
							|  |  |  | 	// things to stderr. | 
					
						
							|  |  |  | 	flag.Set("logtostderr", "true") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	caddy.RegisterPlugin("kubernetes", caddy.Plugin{ | 
					
						
							|  |  |  | 		ServerType: "dns", | 
					
						
							|  |  |  | 		Action:     setup, | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | func setup(c *caddy.Controller) error { | 
					
						
							| 
									
										
										
										
											2018-03-09 19:55:43 +00:00
										 |  |  | 	// See comment in the init function. | 
					
						
							|  |  |  | 	os.Stderr = os.Stdout | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	k, err := kubernetesParse(c) | 
					
						
							| 
									
										
										
										
											2016-08-05 18:19:51 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 		return plugin.Error("kubernetes", err) | 
					
						
							| 
									
										
										
										
											2016-08-05 18:19:51 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	err = k.InitKubeCache() | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 		return plugin.Error("kubernetes", err) | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	k.RegisterKubeCache(c) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler { | 
					
						
							|  |  |  | 		k.Next = next | 
					
						
							|  |  |  | 		return k | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterKubeCache registers KubeCache start and stop functions with Caddy | 
					
						
							|  |  |  | func (k *Kubernetes) RegisterKubeCache(c *caddy.Controller) { | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	c.OnStartup(func() error { | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		go k.APIConn.Run() | 
					
						
							|  |  |  | 		if k.APIProxy != nil { | 
					
						
							|  |  |  | 			k.APIProxy.Run() | 
					
						
							| 
									
										
										
										
											2017-08-10 17:14:56 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-20 22:53:17 +01:00
										 |  |  | 		synced := false | 
					
						
							|  |  |  | 		for synced == false { | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 			synced = k.APIConn.HasSynced() | 
					
						
							| 
									
										
										
										
											2017-10-20 22:53:17 +01:00
										 |  |  | 			time.Sleep(100 * time.Millisecond) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		return nil | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c.OnShutdown(func() error { | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		if k.APIProxy != nil { | 
					
						
							|  |  |  | 			k.APIProxy.Stop() | 
					
						
							| 
									
										
										
										
											2017-08-10 17:14:56 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		return k.APIConn.Stop() | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | func kubernetesParse(c *caddy.Controller) (*Kubernetes, error) { | 
					
						
							| 
									
										
										
										
											2018-02-28 18:16:05 -08:00
										 |  |  | 	var ( | 
					
						
							|  |  |  | 		k8s *Kubernetes | 
					
						
							|  |  |  | 		err error | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	i := 0 | 
					
						
							|  |  |  | 	for c.Next() { | 
					
						
							|  |  |  | 		if i > 0 { | 
					
						
							|  |  |  | 			return nil, plugin.ErrOnce | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-28 18:16:05 -08:00
										 |  |  | 		i++ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		k8s, err = ParseStanza(c) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return k8s, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return k8s, nil | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | // ParseStanza parses a kubernetes stanza | 
					
						
							|  |  |  | func ParseStanza(c *caddy.Controller) (*Kubernetes, error) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-22 20:44:42 +01:00
										 |  |  | 	k8s := New([]string{""}) | 
					
						
							|  |  |  | 	k8s.interfaceAddrsFunc = localPodIP | 
					
						
							|  |  |  | 	k8s.autoPathSearch = searchFromResolvConf() | 
					
						
							| 
									
										
										
										
											2016-07-07 01:40:58 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-22 21:52:18 +01:00
										 |  |  | 	opts := dnsControlOpts{ | 
					
						
							| 
									
										
										
										
											2018-02-16 11:05:52 -05:00
										 |  |  | 		initEndpointsCache: true, | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 		ignoreEmptyService: false, | 
					
						
							| 
									
										
										
										
											2018-02-16 11:05:52 -05:00
										 |  |  | 		resyncPeriod:       defaultResyncPeriod, | 
					
						
							| 
									
										
										
										
											2017-08-22 21:52:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	k8s.opts = opts | 
					
						
							| 
									
										
										
										
											2017-08-22 21:52:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	zones := c.RemainingArgs() | 
					
						
							| 
									
										
										
										
											2017-08-14 08:49:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	if len(zones) != 0 { | 
					
						
							|  |  |  | 		k8s.Zones = zones | 
					
						
							|  |  |  | 		for i := 0; i < len(k8s.Zones); i++ { | 
					
						
							|  |  |  | 			k8s.Zones[i] = plugin.Host(k8s.Zones[i]).Normalize() | 
					
						
							| 
									
										
										
										
											2017-08-14 08:49:26 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		k8s.Zones = make([]string, len(c.ServerBlockKeys)) | 
					
						
							|  |  |  | 		for i := 0; i < len(c.ServerBlockKeys); i++ { | 
					
						
							|  |  |  | 			k8s.Zones[i] = plugin.Host(c.ServerBlockKeys[i]).Normalize() | 
					
						
							| 
									
										
										
										
											2017-08-14 08:49:26 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-11-14 19:31:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	k8s.primaryZoneIndex = -1 | 
					
						
							|  |  |  | 	for i, z := range k8s.Zones { | 
					
						
							| 
									
										
										
										
											2018-02-28 08:43:19 -08:00
										 |  |  | 		if dnsutil.IsReverse(z) > 0 { | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2017-08-14 08:49:26 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		k8s.primaryZoneIndex = i | 
					
						
							|  |  |  | 		break | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if k8s.primaryZoneIndex == -1 { | 
					
						
							|  |  |  | 		return nil, errors.New("non-reverse zone name must be used") | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-01 12:56:10 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	for c.NextBlock() { | 
					
						
							|  |  |  | 		switch c.Val() { | 
					
						
							|  |  |  | 		case "endpoint_pod_names": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) > 0 { | 
					
						
							|  |  |  | 				return nil, c.ArgErr() | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			k8s.endpointNameMode = true | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		case "pods": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) == 1 { | 
					
						
							|  |  |  | 				switch args[0] { | 
					
						
							|  |  |  | 				case podModeDisabled, podModeInsecure, podModeVerified: | 
					
						
							|  |  |  | 					k8s.podMode = args[0] | 
					
						
							|  |  |  | 				default: | 
					
						
							|  |  |  | 					return nil, fmt.Errorf("wrong value for pods: %s,  must be one of: disabled, verified, insecure", args[0]) | 
					
						
							| 
									
										
										
										
											2017-11-08 08:07:10 -05:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				continue | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			return nil, c.ArgErr() | 
					
						
							|  |  |  | 		case "namespaces": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) > 0 { | 
					
						
							|  |  |  | 				for _, a := range args { | 
					
						
							|  |  |  | 					k8s.Namespaces[a] = true | 
					
						
							| 
									
										
										
										
											2017-08-27 01:32:46 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return nil, c.ArgErr() | 
					
						
							|  |  |  | 		case "endpoint": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) > 0 { | 
					
						
							|  |  |  | 				k8s.APIServerList = args | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return nil, c.ArgErr() | 
					
						
							|  |  |  | 		case "tls": // cert key cacertfile | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) == 3 { | 
					
						
							|  |  |  | 				k8s.APIClientCert, k8s.APIClientKey, k8s.APICertAuth = args[0], args[1], args[2] | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return nil, c.ArgErr() | 
					
						
							|  |  |  | 		case "resyncperiod": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) > 0 { | 
					
						
							|  |  |  | 				rp, err := time.ParseDuration(args[0]) | 
					
						
							| 
									
										
										
										
											2017-08-27 01:32:46 +01:00
										 |  |  | 				if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 					return nil, fmt.Errorf("unable to parse resync duration value: '%v': %v", args[0], err) | 
					
						
							| 
									
										
										
										
											2017-08-27 01:32:46 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 				k8s.opts.resyncPeriod = rp | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return nil, c.ArgErr() | 
					
						
							|  |  |  | 		case "labels": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) > 0 { | 
					
						
							|  |  |  | 				labelSelectorString := strings.Join(args, " ") | 
					
						
							|  |  |  | 				ls, err := meta.ParseToLabelSelector(labelSelectorString) | 
					
						
							| 
									
										
										
										
											2018-02-08 10:11:04 -06:00
										 |  |  | 				if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 					return nil, fmt.Errorf("unable to parse label selector value: '%v': %v", labelSelectorString, err) | 
					
						
							| 
									
										
										
										
											2018-02-08 10:11:04 -06:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 				k8s.opts.labelSelector = ls | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return nil, c.ArgErr() | 
					
						
							|  |  |  | 		case "fallthrough": | 
					
						
							|  |  |  | 			k8s.Fall.SetZonesFromArgs(c.RemainingArgs()) | 
					
						
							|  |  |  | 		case "upstream": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							| 
									
										
										
										
											2018-06-15 16:12:56 +01:00
										 |  |  | 			u, err := upstream.New(args) | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return nil, err | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-02-14 15:11:26 -05:00
										 |  |  | 			k8s.Upstream = u | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		case "ttl": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) == 0 { | 
					
						
							|  |  |  | 				return nil, c.ArgErr() | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			t, err := strconv.Atoi(args[0]) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return nil, err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if t < 5 || t > 3600 { | 
					
						
							|  |  |  | 				return nil, c.Errf("ttl must be in range [5, 3600]: %d", t) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			k8s.ttl = uint32(t) | 
					
						
							|  |  |  | 		case "transfer": | 
					
						
							|  |  |  | 			tos, froms, err := parse.Transfer(c, false) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return nil, err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if len(froms) != 0 { | 
					
						
							|  |  |  | 				return nil, c.Errf("transfer from is not supported with this plugin") | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 			k8s.TransferTo = tos | 
					
						
							| 
									
										
										
										
											2018-02-16 11:05:52 -05:00
										 |  |  | 		case "noendpoints": | 
					
						
							|  |  |  | 			if len(c.RemainingArgs()) != 0 { | 
					
						
							|  |  |  | 				return nil, c.ArgErr() | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			k8s.opts.initEndpointsCache = false | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 		case "ignore": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) > 0 { | 
					
						
							|  |  |  | 				ignore := args[0] | 
					
						
							|  |  |  | 				if ignore == "empty_service" { | 
					
						
							|  |  |  | 					k8s.opts.ignoreEmptyService = true | 
					
						
							|  |  |  | 					continue | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					return nil, fmt.Errorf("unable to parse ignore value: '%v'", ignore) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		default: | 
					
						
							|  |  |  | 			return nil, c.Errf("unknown property '%s'", c.Val()) | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	return k8s, nil | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-10 19:26:31 +01:00
										 |  |  | func searchFromResolvConf() []string { | 
					
						
							|  |  |  | 	rc, err := dns.ClientConfigFromFile("/etc/resolv.conf") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	plugin.Zones(rc.Search).Normalize() | 
					
						
							| 
									
										
										
										
											2017-08-10 19:26:31 +01:00
										 |  |  | 	return rc.Search | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 16:21:07 +01:00
										 |  |  | const defaultResyncPeriod = 5 * time.Minute |