plugin/kubernetes: allow trimming down of cached items. (#2128)
* Convert to runtime.Object to smaller structs This adds conversion for all the objects we want to keep in the cache. It keeps the minimum for CoreDNS to function and throws away the rest. The conversion: api.Endpoints -> object.Endpoints api.Pod -> object.Pod api.Serivce -> object.Service We needed to copy some client-go stuff to insert a conversion function into NewIndexInformers. Some unrelated cleanups in the watch functionality as that needed to be touched because of the above translation of objects. Signed-off-by: Miek Gieben <miek@miek.nl> * Reduce test line-count Signed-off-by: Miek Gieben <miek@miek.nl> * ....and fix test Signed-off-by: Miek Gieben <miek@miek.nl> * Drop use of append Signed-off-by: Miek Gieben <miek@miek.nl> * cosmetic changes Signed-off-by: Miek Gieben <miek@miek.nl> * that was a typo Signed-off-by: Miek Gieben <miek@miek.nl> * re-introduce append here We can't really use len() here because we don't know the number before hand. Signed-off-by: Miek Gieben <miek@miek.nl> * comment in better place Signed-off-by: Miek Gieben <miek@miek.nl> * Make the timestamp a bool; thats where it is used for Signed-off-by: Miek Gieben <miek@miek.nl> * Set incoming object to nil Explicataliy discard the converted object; we did a deep copy it's not needed anymore. Signed-off-by: Miek Gieben <miek@miek.nl> * Per Chris's comment Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
parent
298b860a97
commit
830e97f800
21 changed files with 1154 additions and 982 deletions
|
@ -11,6 +11,7 @@ import (
|
|||
|
||||
"github.com/coredns/coredns/plugin"
|
||||
"github.com/coredns/coredns/plugin/etcd/msg"
|
||||
"github.com/coredns/coredns/plugin/kubernetes/object"
|
||||
"github.com/coredns/coredns/plugin/pkg/dnsutil"
|
||||
"github.com/coredns/coredns/plugin/pkg/fall"
|
||||
"github.com/coredns/coredns/plugin/pkg/healthcheck"
|
||||
|
@ -304,18 +305,18 @@ func serviceFQDN(obj meta.Object, zone string) string {
|
|||
}
|
||||
|
||||
// podFQDN returns the k8s cluster dns spec FQDN for the pod.
|
||||
func podFQDN(p *api.Pod, zone string) string {
|
||||
if strings.Contains(p.Status.PodIP, ".") {
|
||||
name := strings.Replace(p.Status.PodIP, ".", "-", -1)
|
||||
func podFQDN(p *object.Pod, zone string) string {
|
||||
if strings.Contains(p.PodIP, ".") {
|
||||
name := strings.Replace(p.PodIP, ".", "-", -1)
|
||||
return dnsutil.Join(name, p.GetNamespace(), Pod, zone)
|
||||
}
|
||||
|
||||
name := strings.Replace(p.Status.PodIP, ":", "-", -1)
|
||||
name := strings.Replace(p.PodIP, ":", "-", -1)
|
||||
return dnsutil.Join(name, p.GetNamespace(), Pod, zone)
|
||||
}
|
||||
|
||||
// endpointFQDN returns a list of k8s cluster dns spec service FQDNs for each subset in the endpoint.
|
||||
func endpointFQDN(ep *api.Endpoints, zone string, endpointNameMode bool) []string {
|
||||
func endpointFQDN(ep *object.Endpoints, zone string, endpointNameMode bool) []string {
|
||||
var names []string
|
||||
for _, ss := range ep.Subsets {
|
||||
for _, addr := range ss.Addresses {
|
||||
|
@ -325,12 +326,12 @@ func endpointFQDN(ep *api.Endpoints, zone string, endpointNameMode bool) []strin
|
|||
return names
|
||||
}
|
||||
|
||||
func endpointHostname(addr api.EndpointAddress, endpointNameMode bool) string {
|
||||
func endpointHostname(addr object.EndpointAddress, endpointNameMode bool) string {
|
||||
if addr.Hostname != "" {
|
||||
return addr.Hostname
|
||||
}
|
||||
if endpointNameMode && addr.TargetRef != nil && addr.TargetRef.Name != "" {
|
||||
return addr.TargetRef.Name
|
||||
if endpointNameMode && addr.TargetRefName != "" {
|
||||
return addr.TargetRefName
|
||||
}
|
||||
if strings.Contains(addr.IP, ".") {
|
||||
return strings.Replace(addr.IP, ".", "-", -1)
|
||||
|
@ -396,12 +397,12 @@ func (k *Kubernetes) findPods(r recordRequest, zone string) (pods []msg.Service,
|
|||
}
|
||||
|
||||
// exclude pods in the process of termination
|
||||
if !p.ObjectMeta.DeletionTimestamp.IsZero() {
|
||||
if p.Deleting {
|
||||
continue
|
||||
}
|
||||
|
||||
// check for matching ip and namespace
|
||||
if ip == p.Status.PodIP && match(namespace, p.Namespace) {
|
||||
if ip == p.PodIP && match(namespace, p.Namespace) {
|
||||
s := msg.Service{Key: strings.Join([]string{zonePath, Pod, namespace, podname}, "/"), Host: ip, TTL: k.ttl}
|
||||
pods = append(pods, s)
|
||||
|
||||
|
@ -424,9 +425,9 @@ func (k *Kubernetes) findServices(r recordRequest, zone string) (services []msg.
|
|||
}
|
||||
|
||||
var (
|
||||
endpointsListFunc func() []*api.Endpoints
|
||||
endpointsList []*api.Endpoints
|
||||
serviceList []*api.Service
|
||||
endpointsListFunc func() []*object.Endpoints
|
||||
endpointsList []*object.Endpoints
|
||||
serviceList []*object.Service
|
||||
)
|
||||
|
||||
// handle empty service name
|
||||
|
@ -441,11 +442,11 @@ func (k *Kubernetes) findServices(r recordRequest, zone string) (services []msg.
|
|||
|
||||
if wildcard(r.service) || wildcard(r.namespace) {
|
||||
serviceList = k.APIConn.ServiceList()
|
||||
endpointsListFunc = func() []*api.Endpoints { return k.APIConn.EndpointsList() }
|
||||
endpointsListFunc = func() []*object.Endpoints { return k.APIConn.EndpointsList() }
|
||||
} else {
|
||||
idx := r.service + "." + r.namespace
|
||||
idx := object.ServiceKey(r.service, r.namespace)
|
||||
serviceList = k.APIConn.SvcIndex(idx)
|
||||
endpointsListFunc = func() []*api.Endpoints { return k.APIConn.EpIndex(idx) }
|
||||
endpointsListFunc = func() []*object.Endpoints { return k.APIConn.EpIndex(idx) }
|
||||
}
|
||||
|
||||
for _, svc := range serviceList {
|
||||
|
@ -459,7 +460,7 @@ func (k *Kubernetes) findServices(r recordRequest, zone string) (services []msg.
|
|||
continue
|
||||
}
|
||||
|
||||
if k.opts.ignoreEmptyService && svc.Spec.ClusterIP != api.ClusterIPNone {
|
||||
if k.opts.ignoreEmptyService && svc.ClusterIP != api.ClusterIPNone {
|
||||
// serve NXDOMAIN if no endpoint is able to answer
|
||||
podsCount := 0
|
||||
for _, ep := range endpointsListFunc() {
|
||||
|
@ -474,12 +475,12 @@ func (k *Kubernetes) findServices(r recordRequest, zone string) (services []msg.
|
|||
}
|
||||
|
||||
// Endpoint query or headless service
|
||||
if svc.Spec.ClusterIP == api.ClusterIPNone || r.endpoint != "" {
|
||||
if svc.ClusterIP == api.ClusterIPNone || r.endpoint != "" {
|
||||
if endpointsList == nil {
|
||||
endpointsList = endpointsListFunc()
|
||||
}
|
||||
for _, ep := range endpointsList {
|
||||
if ep.ObjectMeta.Name != svc.Name || ep.ObjectMeta.Namespace != svc.Namespace {
|
||||
if ep.Name != svc.Name || ep.Namespace != svc.Namespace {
|
||||
continue
|
||||
}
|
||||
|
||||
|
@ -493,11 +494,6 @@ func (k *Kubernetes) findServices(r recordRequest, zone string) (services []msg.
|
|||
}
|
||||
}
|
||||
|
||||
if len(eps.Ports) == 0 {
|
||||
// add a sentinel port (-1) entry so we create records for services without any declared ports
|
||||
eps.Ports = append(eps.Ports, api.EndpointPort{Port: -1})
|
||||
}
|
||||
|
||||
for _, p := range eps.Ports {
|
||||
if !(match(r.port, p.Name) && match(r.protocol, string(p.Protocol))) {
|
||||
continue
|
||||
|
@ -516,8 +512,8 @@ func (k *Kubernetes) findServices(r recordRequest, zone string) (services []msg.
|
|||
}
|
||||
|
||||
// External service
|
||||
if svc.Spec.Type == api.ServiceTypeExternalName {
|
||||
s := msg.Service{Key: strings.Join([]string{zonePath, Svc, svc.Namespace, svc.Name}, "/"), Host: svc.Spec.ExternalName, TTL: k.ttl}
|
||||
if svc.Type == api.ServiceTypeExternalName {
|
||||
s := msg.Service{Key: strings.Join([]string{zonePath, Svc, svc.Namespace, svc.Name}, "/"), Host: svc.ExternalName, TTL: k.ttl}
|
||||
if t, _ := s.HostType(); t == dns.TypeCNAME {
|
||||
s.Key = strings.Join([]string{zonePath, Svc, svc.Namespace, svc.Name}, "/")
|
||||
services = append(services, s)
|
||||
|
@ -528,18 +524,14 @@ func (k *Kubernetes) findServices(r recordRequest, zone string) (services []msg.
|
|||
}
|
||||
|
||||
// ClusterIP service
|
||||
if len(svc.Spec.Ports) == 0 {
|
||||
// add a sentinel port (-1) entry so we create records for services without any declared ports
|
||||
svc.Spec.Ports = append(svc.Spec.Ports, api.ServicePort{Port: -1})
|
||||
}
|
||||
for _, p := range svc.Spec.Ports {
|
||||
for _, p := range svc.Ports {
|
||||
if !(match(r.port, p.Name) && match(r.protocol, string(p.Protocol))) {
|
||||
continue
|
||||
}
|
||||
|
||||
err = nil
|
||||
|
||||
s := msg.Service{Host: svc.Spec.ClusterIP, Port: int(p.Port), TTL: k.ttl}
|
||||
s := msg.Service{Host: svc.ClusterIP, Port: int(p.Port), TTL: k.ttl}
|
||||
s.Key = strings.Join([]string{zonePath, Svc, svc.Namespace, svc.Name}, "/")
|
||||
|
||||
services = append(services, s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue