| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | package kubernetes | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2020-03-30 11:10:41 -07:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2016-08-05 18:19:51 -07:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											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" | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	"github.com/coredns/coredns/plugin/metrics" | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 09:04:47 +08:00
										 |  |  | 	"github.com/caddyserver/caddy" | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	"github.com/miekg/dns" | 
					
						
							|  |  |  | 	meta "k8s.io/apimachinery/pkg/apis/meta/v1" | 
					
						
							| 
									
										
										
										
											2020-01-30 09:19:26 +00:00
										 |  |  | 	_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"       // pull this in here, because we want it excluded if plugin.cfg doesn't have k8s | 
					
						
							|  |  |  | 	_ "k8s.io/client-go/plugin/pkg/client/auth/oidc"      // pull this in here, because we want it excluded if plugin.cfg doesn't have k8s | 
					
						
							|  |  |  | 	_ "k8s.io/client-go/plugin/pkg/client/auth/openstack" // pull this in here, because we want it excluded if plugin.cfg doesn't have k8s | 
					
						
							| 
									
										
										
										
											2018-09-28 12:18:55 -07:00
										 |  |  | 	"k8s.io/client-go/tools/clientcmd" | 
					
						
							| 
									
										
										
										
											2020-01-30 09:19:26 +00:00
										 |  |  | 	"k8s.io/klog" | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-31 20:03:18 +02:00
										 |  |  | const pluginName = "kubernetes" | 
					
						
							| 
									
										
										
										
											2018-04-22 21:40:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-31 20:03:18 +02:00
										 |  |  | var log = clog.NewWithPlugin(pluginName) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { plugin.Register(pluginName, setup) } | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | func setup(c *caddy.Controller) error { | 
					
						
							| 
									
										
										
										
											2019-08-01 12:51:37 +00:00
										 |  |  | 	klog.SetOutput(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 { | 
					
						
							| 
									
										
										
										
											2020-03-31 20:03:18 +02:00
										 |  |  | 		return plugin.Error(pluginName, err) | 
					
						
							| 
									
										
										
										
											2016-08-05 18:19:51 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 11:10:41 -07:00
										 |  |  | 	err = k.InitKubeCache(context.Background()) | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2020-03-31 20:03:18 +02:00
										 |  |  | 		return plugin.Error(pluginName, err) | 
					
						
							| 
									
										
										
										
											2016-06-06 12:49:53 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	k.RegisterKubeCache(c) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	c.OnStartup(func() error { | 
					
						
							|  |  |  | 		metrics.MustRegister(c, DnsProgrammingLatency) | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler { | 
					
						
							|  |  |  | 		k.Next = next | 
					
						
							|  |  |  | 		return k | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-05 09:07:55 -04:00
										 |  |  | 	// get locally bound addresses | 
					
						
							|  |  |  | 	c.OnStartup(func() error { | 
					
						
							|  |  |  | 		k.localIPs = boundIPs(c) | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 	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() | 
					
						
							| 
									
										
										
										
											2017-10-20 22:53:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-22 09:30:08 -04:00
										 |  |  | 		timeout := time.After(5 * time.Second) | 
					
						
							|  |  |  | 		ticker := time.NewTicker(100 * time.Millisecond) | 
					
						
							|  |  |  | 		for { | 
					
						
							|  |  |  | 			select { | 
					
						
							|  |  |  | 			case <-ticker.C: | 
					
						
							|  |  |  | 				if k.APIConn.HasSynced() { | 
					
						
							|  |  |  | 					return nil | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			case <-timeout: | 
					
						
							|  |  |  | 				return nil | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c.OnShutdown(func() error { | 
					
						
							| 
									
										
										
										
											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.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, | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-02 16:23:47 +01:00
										 |  |  | 	k8s.Upstream = upstream.New() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2018-12-08 23:40:07 +00:00
										 |  |  | 					k8s.Namespaces[a] = struct{}{} | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2019-08-21 16:08:55 -04:00
										 |  |  | 				// Multiple endpoints are deprecated but still could be specified, | 
					
						
							| 
									
										
										
										
											2019-01-13 10:09:51 -08:00
										 |  |  | 				// only the first one be used, though | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 				k8s.APIServerList = args | 
					
						
							| 
									
										
										
										
											2019-01-07 09:28:03 -08:00
										 |  |  | 				if len(args) > 1 { | 
					
						
							| 
									
										
										
										
											2019-01-13 10:09:51 -08:00
										 |  |  | 					log.Warningf("Multiple endpoints have been deprecated, only the first specified endpoint '%s' is used", args[0]) | 
					
						
							| 
									
										
										
										
											2019-01-07 09:28:03 -08:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 				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 "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() | 
					
						
							| 
									
										
										
										
											2019-03-22 08:32:40 -06:00
										 |  |  | 		case "namespace_labels": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) > 0 { | 
					
						
							|  |  |  | 				namespaceLabelSelectorString := strings.Join(args, " ") | 
					
						
							|  |  |  | 				nls, err := meta.ParseToLabelSelector(namespaceLabelSelectorString) | 
					
						
							|  |  |  | 				if err != nil { | 
					
						
							|  |  |  | 					return nil, fmt.Errorf("unable to parse namespace_label selector value: '%v': %v", namespaceLabelSelectorString, err) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				k8s.opts.namespaceLabelSelector = nls | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return nil, c.ArgErr() | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		case "fallthrough": | 
					
						
							|  |  |  | 			k8s.Fall.SetZonesFromArgs(c.RemainingArgs()) | 
					
						
							|  |  |  | 		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 | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-11-30 13:05:49 -05:00
										 |  |  | 			if t < 0 || t > 3600 { | 
					
						
							|  |  |  | 				return nil, c.Errf("ttl must be in range [0, 3600]: %d", t) | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			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-09-28 12:18:55 -07:00
										 |  |  | 		case "kubeconfig": | 
					
						
							|  |  |  | 			args := c.RemainingArgs() | 
					
						
							|  |  |  | 			if len(args) == 2 { | 
					
						
							|  |  |  | 				config := clientcmd.NewNonInteractiveDeferredLoadingClientConfig( | 
					
						
							|  |  |  | 					&clientcmd.ClientConfigLoadingRules{ExplicitPath: args[0]}, | 
					
						
							|  |  |  | 					&clientcmd.ConfigOverrides{CurrentContext: args[1]}, | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 				k8s.ClientConfig = config | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return nil, c.ArgErr() | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-22 08:32:40 -06:00
										 |  |  | 	if len(k8s.Namespaces) != 0 && k8s.opts.namespaceLabelSelector != nil { | 
					
						
							|  |  |  | 		return nil, c.Errf("namespaces and namespace_labels cannot both be set") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | } |