aboutsummaryrefslogtreecommitdiff
path: root/middleware/kubernetes/ns_test.go (follow)
AgeCommit message (Collapse)AuthorFilesLines
2017-08-18mw/federation: add federation back as separate mw for k8s (#929)Gravatar Miek Gieben 1-4/+2
* mw/federaration This PR add the federation back as a middleware to keep it more contained from the main kubernetes code. It also makes parseRequest less import and pushes this functionlity down in the k.Entries. This minimizes (or tries to) the importance for the qtype in the query. In the end the qtype checking should only happen in ServeDNS - but for k8s this might proof difficult. Numerous other cleanup in code and kubernetes tests. * up test coverage
2017-08-10mw/k8s: remove dependence on global var (#888)Gravatar Miek Gieben 1-44/+9
* mw/k8s: remove dependence on global var Remove the global coreDNSRecord that was used. Remove tests the referenced that var. Cleanup the rest. * Rename function as well * fixes
2017-08-10Kubernetes cleanup6 (#887)Gravatar Miek Gieben 1-13/+0
* mw/kubernetes: handle dns.TypeNS better. * mw/kubernetes: cleanup typeNS replies a bit.
2017-08-10WIP: Parserequest2 cutback (#868)Gravatar Miek Gieben 1-7/+7
* middleware/kubernetes: pull TXT out of parseRequest Put the TXT handling one layer higher and remove it from parseRequest. Also rename the podsvc field in there to podOrSvc. Now that it isn't used anymore for TXT record (dns-version) that was put in there. We can make this a boolean (in a future PR). Make parseRequest get an optional Zone that is from state.Zone and use that instead of its own code. Removed some tests and other smaller cleanups. Fixes #836 * add this reverse * another check * readd * Rename to kPod and kService for some clarity
2017-08-03middleware/kubernetes: cleanup (#818)Gravatar Miek Gieben 1-8/+2
Drop the interfaceAddr interfaces and just use a function. Cleanup all fallout from that. Remove the use of global variables and cleanup the tests a bit.
2017-08-03mw/kubernete: small cleanup (#810)Gravatar Miek Gieben 1-7/+5
* mw/kubernete: small cleanup Small cleanup, avoid pointer to []msg.Services and just returns the msg.Service. * Actually compile * testss
2017-06-16compress empty implementations to single line (#740)Gravatar Chris O'Haver 1-11/+3
2017-06-14middleware/kubernetes: Implement current federation beta (#723)Gravatar Chris O'Haver 1-0/+2
* federation initial commit * UTs/bugfixes * federation bits * polish, cover UT gaps * add TODO * go fmt & todo note * remove unrelated change * pr changes * start node watcher * get real node name * remove unused case
2017-06-02unexpose items per lint (#701)Gravatar Chris O'Haver 1-1/+1
2017-06-02unexpose InterfaceAddrser (#693)Gravatar Chris O'Haver 1-3/+3
2017-05-22Handle K8s middleware NS record (#662)Gravatar Chris O'Haver 1-0/+133
* commit for testing in cluster * commit for testing in cluster * refactor and add ns.dns record * Release 007 * reduce heap allocations * gofmt * revert accidental Makefile commits * restore prior rcode for disabled pod mode * revert Makefile deltas * add unit tests * more unit tests * make isRequestInReverseRange easier to test * more unit tests * addressing review feedback * commit setup.go