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. 13 Jul, 2018 1 commit
  2. 11 Jul, 2018 1 commit
  3. 10 Jul, 2018 2 commits
    • Miek Gieben's avatar
      Up release to 1.2.0 (#1958) · 2306721c
      Miek Gieben authored
      Automatically submitted.
      2306721c
    • Miek Gieben's avatar
      release: automate the release (#1935) · 3b9da823
      Miek Gieben authored
      * release: automate the release
      
      This PR aims to various pieces into place so we can automate the coredns
      release. It needs the script from coredns/release to be installed. Dreck
      is to be setup as described in coredns/release/README.md
      
      The release-coredns script can be tested and allows for other branches
      than master to be test.
      
      This PR also features some cleanup in the Makefile.release so we don't
      call the godep target for each linux release - this speeds it up for
      some bit.
      
      Manually running ./release-coredns -t auto-release builds the artifects
      for this release, but (of course) doesn't upload anything yet.
      
      Add /release to the OWNERS and allow command to be executed (this still
      needs to be tested).
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * that makefile target doesnt exist anymore
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * test release for now
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * Slightly better output
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * remove again
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      3b9da823
  4. 09 Jul, 2018 4 commits
  5. 08 Jul, 2018 1 commit
  6. 07 Jul, 2018 5 commits
  7. 06 Jul, 2018 2 commits
  8. 05 Jul, 2018 1 commit
  9. 04 Jul, 2018 2 commits
  10. 03 Jul, 2018 4 commits
  11. 02 Jul, 2018 3 commits
    • Miek Gieben's avatar
      plugin/rewrite: use request.Request and other cleanups (#1920) · 6dd2cf8c
      Miek Gieben authored
      This was done anyway, but only deep in the functions, just do this
      everywhere; allows for shorter code and request.Request allows for
      caching as well.
      
      Cleanups, make it more Go like.
      * remove unneeded switches
      * remove testdir (why was this there??)
      * simplify the logic
      * remove unneeded variables
      * put short functions on a single line
      * fix documentation.
      * spin off wire funcs in wire.go, make them functions.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      6dd2cf8c
    • Yong Tang's avatar
      Update k8s client-go to v8.0.0 (#1922) · 1abecf99
      Yong Tang authored
      k8s' client-go has been updated to v8.0.0 (1.11). This fix
      updates client-go dependency so that it is in sync.
      Signed-off-by: default avatarYong Tang <yong.tang.github@outlook.com>
      1abecf99
    • Miek Gieben's avatar
      plugin/metadata: metadata is just label=value (#1914) · 99800a68
      Miek Gieben authored
      This revert 17d807f0 and re-adds the metadata plugin as a plugin that
      just sets a label to a value function.
      
      Add package documentation on how to use the metadata package. Make it
      clear that any caching is up to the Func implemented.
      
      There are now - no in tree users. We could add the request metadata by
      default under names that copy request.Request, i.e
      
      request/ip - remote IP
      request/port - remote port
      
      Variables.go has been deleted.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      99800a68
  12. 01 Jul, 2018 7 commits
  13. 30 Jun, 2018 2 commits
  14. 29 Jun, 2018 3 commits
    • Miek Gieben's avatar
      plugin/metadata: some cleanups (#1906) · 2fd31cd3
      Miek Gieben authored
      * plugin/metadata: some cleanups
      
      Name to provider.go as that's what being defined right now in the file.
      Use request.Request because that's done in variables.go anyway. Name the
      main storage M, because there is no further meaning behind.
      
      Remove superfluous methods
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * Fix test
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      2fd31cd3
    • Miek Gieben's avatar
      update corefile(5) and regen (#1904) · e6c00f39
      Miek Gieben authored
      Add that we support https and do a regen.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      e6c00f39
    • Eugen Kleiner's avatar
      plugin/metadata: add metadata plugin (#1894) · 17d807f0
      Eugen Kleiner authored
      * plugin/metadata: add metadata plugin
      
      * plugin/metadata: Add MD struct, refactor code, fix doc
      
      * plugin/metadata: simplify metadata key
      
      * plugin/metadata: improve setup_test
      
      * Support of metadata by rewrite plugin. Move calculated variables to metadata.
      
      * Move variables from metadata to pkg, add UTs, READMEs change, metadata small fixes
      
      * Add client port validation to variables_test
      
      * plugin/metadata: improve README
      
      * plugin/metadata: rename methods
      
      * plugin/metadata: Update Metadataer interface, update doc, cosmetic code changes
      
      * plugin/metadata: move colllisions check to OnStartup(). Fix default variables metadataer.
      
      * plugin/metadata: Fix comment for method setValue
      
      * plugin/metadata: change variables order to fix linter warning
      
      * plugin/metadata: rename Metadataer to Provider
      17d807f0
  15. 28 Jun, 2018 1 commit
    • Miek Gieben's avatar
      Fix max-age in http server (#1890) · dae506b5
      Miek Gieben authored
      * Fix max-age in http server
      
      Move the minMsgTTL to dnsutil and rename it MinimalTTL, move some
      constants there as well.
      Use these new function in server_https to correctly set the max-age
      HTTP header.
      
      Fixes: #1823
      
      * Linter
      dae506b5
  16. 27 Jun, 2018 1 commit
    • John Belamaric's avatar
      Watch feature (#1527) · 99287d09
      John Belamaric authored
      * Add part 1 watch functionality. (squashed)
      
      * add funcs for service/endpoint fqdns
      
      * add endpoints watch
      
      * document exposed funcs
      
      * only send subset deltas
      
      * locking for watch map
      
      * tests and docs
      
      * add pod watch
      
      * remove debugs prints
      
      * feedback part 1
      
      * add error reporting to proto
      
      * inform clients of server stop+errors
      
      * add grpc options param
      
      * use proper context
      
      * Review feedback:
       * Removed client (will move to another repo)
       * Use new log functions
       * Change watchChan to be for string not []string
       * Rework how k8s plugin stores watch tracking info to simplify
       * Normalize the qname on watch request
      
      * Add blank line back
      
      * Revert another spurious change
      
      * Fix tests
      
      * Add stop channel.
      Fix tests.
      Better docs for plugin interface.
      
      * fmt.Printf -> log.Warningf
      
      * Move from dnsserver to plugin/pkg/watch
      
      * gofmt
      
      * remove dead client watches
      
      * sate linter
      
      * linter omg
      99287d09