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. 14 Mar, 2022 9 commits
  2. 12 Mar, 2022 3 commits
  3. 08 Mar, 2022 4 commits
  4. 07 Mar, 2022 10 commits
  5. 05 Mar, 2022 1 commit
  6. 04 Mar, 2022 1 commit
  7. 02 Mar, 2022 4 commits
  8. 01 Mar, 2022 1 commit
    • Yong Tang's avatar
      Add OSSF Security Scoreboard Scan (#5208) · 402c08fe
      Yong Tang authored
      * Add OSSF Security Scoreboard Scan
      
      This PR adds OSSF's Security Scoreboard Scan, to help tighten CoreDNS's security practice.
      
      OSSF Scoreboard is recommended by GitHub. The result will show up in project's "Code Scanning Alerts" (together with existing CodeQL scan we already have).
      Signed-off-by: default avatarYong Tang <yong.tang.github@outlook.com>
      402c08fe
  9. 28 Feb, 2022 4 commits
  10. 26 Feb, 2022 1 commit
  11. 22 Feb, 2022 2 commits
    • Chris O'Haver's avatar
      plugin/etcd+kubernetes: Persist truncated state to client if CNAME lookup... · 66dc74ca
      Chris O'Haver authored
      plugin/etcd+kubernetes: Persist truncated state to client if CNAME lookup response is truncated (#4715)
      
      Persist the TC bit to client response for truncated CNAME lookups.
      Signed-off-by: default avatarChris O'Haver <cohaver@infoblox.com>
      66dc74ca
    • Yong Tang's avatar
      Avoid expose arch-specific docker image tags (#5201) · d3a118e1
      Yong Tang authored
      This PR tries to address the issue in 5199
      where there were confusion on which image tag to use.
      Because the image-specific `coredns/coredns-{arch}:version` is not usable
      for all arch other than arm64, confusion happens.
      
      This PR, for all arch-specific docker images:
      1. Use `coredns/coredns:{arch}-version` (not `coredns/coredns-{arch}:version`)
         so that all images remain within the same docker repo (not multiple repos).
      2. Push the arch-specific image `coredns/coredns:{arch}-version` to dockerhub.
      3. Create manifest-specific `coredns/coredns:version` and `coredns/coredns:latest` from arch-specific images.
      4. Push `coredns/coredns:version` and `coredns/coredns:latest` to dockerhub
      5. Delete arch-specific image tags `coredns/coredns:{arch}-version` from dockerhub.
      
      This will make arch-specific image tags invisible, but the  `coredns/coredns:version` and `coredns/coredns:latest`
      will work as expected.
      Signed-off-by: default avatarYong Tang <yong.tang.github@outlook.com>
      d3a118e1