This project is mirrored from https://github.com/coredns/coredns.git. The repository failed to update .
Repository mirroring has been paused due to too many failed attempts, and can be resumed by a project maintainer.
Last successful update .
  1. 15 Feb, 2017 2 commits
    • John Belamaric's avatar
      Client-side of gRPC proxy (#511) · 061b3fc1
      John Belamaric authored
      * WIP: Client-side of gRPC proxy
      
      * Add tests
      
      * gofmt
      
      * Implement OnShutdown; add a little logging
      
      * Update for context in Exchange change
      
      * go fmt
      
      * Update README
      
      * Review comments
      
      * Compiling is good
      
      * More README improvements
      061b3fc1
    • Miek Gieben's avatar
      go gen improvements (#524) · 98c86f3f
      Miek Gieben authored
      Remove the "gen" directory and move directives_generate.go out of it.
      Add a build ignore tag so it isn't build by default. Cleanup the go gen
      invocations so there are not seen as package docs.
      
      Simplify the code a bit and don't run go gen twice.
      98c86f3f
  2. 12 Feb, 2017 1 commit
    • Miek Gieben's avatar
      La context (#521) · a5f3cb5f
      Miek Gieben authored
      * middleware/proxy: give Exchange a context
      
      Make context.Context the first paramater in the Exchange method.
      This is inline with all other query functions.
      
      * up the version
      a5f3cb5f
  3. 11 Feb, 2017 1 commit
  4. 10 Feb, 2017 5 commits
  5. 09 Feb, 2017 1 commit
  6. 08 Feb, 2017 7 commits
  7. 07 Feb, 2017 2 commits
  8. 03 Feb, 2017 1 commit
    • Chris O'Haver's avatar
      k8s middleware add tests and docs update (#501) · 77f957d4
      Chris O'Haver authored
      * add cidrs opt
      
      * remove state data from middleware object
      
      * update k8s docs
      
      * Add integration tests
      
      * add unit tests for cidr and pods config
      
      * more README fixes, separate dev notes
      
      * adjust section headers
      
      * fix typo
      77f957d4
  9. 02 Feb, 2017 1 commit
  10. 01 Feb, 2017 2 commits
  11. 30 Jan, 2017 1 commit
  12. 24 Jan, 2017 2 commits
  13. 23 Jan, 2017 2 commits
  14. 22 Jan, 2017 2 commits
  15. 20 Jan, 2017 1 commit
  16. 19 Jan, 2017 1 commit
  17. 16 Jan, 2017 1 commit
  18. 15 Jan, 2017 3 commits
  19. 13 Jan, 2017 1 commit
    • Chris O'Haver's avatar
      Pod insecure2 (#479) · b6a2a5ae
      Chris O'Haver authored
      * return servfail for pod rqsts when pods disabled
      
      * Add integration test for disabled pod mode
      b6a2a5ae
  20. 12 Jan, 2017 3 commits
    • John Belamaric's avatar
      Use common TLS parsing routine for etcd (#476) · 2e366459
      John Belamaric authored
      * Use common TLS parsing routine for etcd
      
      Change to use the new common routine, and update the docs to reflect
      the different options for passing TLS configuration.
      
      * Move middleware/tls to middleware/pkg/tls
      
      This was put in the wrong place originally.
      2e366459
    • Miek Gieben's avatar
      Run tests in parallel (#478) · 94c59da5
      Miek Gieben authored
      Create a small speedup running the tests:
      
      PASS
      ok  	github.com/miekg/coredns/test	10.329s
      
      PASS
      ok  	github.com/miekg/coredns/test	6.079s
      
      Skip the etcd ones. Doing the middleware/*/*_test ones doesn't yield
      any speedup as these are still done on a per directory basis.
      94c59da5
    • Miek Gieben's avatar
      middleware/proxy: add read/writeDeadline (#477) · 0c3ad499
      Miek Gieben authored
      Add deadline to break the connection. We use the default of 5 seconds.
      After this the backend is marked unhealthy and not used for some time.
      
      Fixes #467
      0c3ad499