federation

package
v0.0.0-...-c2105a4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 11, 2017 License: Apache-2.0 Imports: 11 Imported by: 0

README

federation

The federation middleware enables federated queries to be resolved via the kubernetes middleware.

Enabling federation without also having kubernetes is a noop.

Syntax

federation [ZONES...] {
    NAME DOMAIN
  • Each NAME and DOMAIN defines federation membership. One entry for each. A duplicate NAME will silently overwrite any previous value.

Examples

Here we handle all service requests in the prod and stage federations.

. {
    kubernetes cluster.local 
    federation cluster.local {
        prod prod.feddomain.com
        staging staging.feddomain.com
    }
}

Or slightly shorter:

cluster.local {
    kubernetes
    federation {
        prod prod.feddomain.com
        staging staging.feddomain.com
    }
}

Documentation

Overview

Package federation implements kubernetes federation. It checks if the qname matches a possible federation. If this is the case and the captured answer is an NXDOMAIN, federation is performed. If this is not the case the original answer is returned.

The federation label is always the 2nd to last once the zone is chopped of. For instance "nginx.mynamespace.myfederation.svc.example.com" has "myfederation" as the federation label. For federation to work we do a normal k8s lookup *without* that label, if that comes back with NXDOMAIN or NODATA(??) we create a federation record and return that.

Federation is only useful in conjunction with the kubernetes middleware, without it is a noop.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Federation

type Federation struct {
	Next        middleware.Handler
	Federations Func
	// contains filtered or unexported fields
}

Federation contains the name to zone mapping used for federation in kubernetes.

func New

func New() *Federation

New returns a new federation.

func (*Federation) Name

func (f *Federation) Name() string

Name implements the middleware.Handle interface.

func (*Federation) ServeDNS

func (f *Federation) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error)

ServeDNS implements the middleware.Handle interface.

type Func

type Func func(state request.Request, fname, fzone string) (msg.Service, error)

Func needs to be implemented by any middleware that implements federation. Right now this is only the kubernetes middleware.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL