1. 18 Apr, 2018 1 commit
  2. 17 Apr, 2018 1 commit
  3. 12 Apr, 2018 3 commits
  4. 05 Apr, 2018 2 commits
  5. 04 Apr, 2018 9 commits
  6. 03 Apr, 2018 1 commit
  7. 27 Mar, 2018 1 commit
    • jmo808's avatar
      Update azure.md · 1559f650
      jmo808 authored
      Added nginx-ingress information and made setting up AzureDNS with k8s on AKS or other providers easier to understand.
      1559f650
  8. 23 Mar, 2018 2 commits
  9. 21 Mar, 2018 1 commit
  10. 16 Mar, 2018 2 commits
  11. 14 Mar, 2018 2 commits
  12. 13 Mar, 2018 1 commit
  13. 07 Mar, 2018 1 commit
  14. 27 Feb, 2018 2 commits
  15. 23 Feb, 2018 1 commit
  16. 22 Feb, 2018 2 commits
  17. 21 Feb, 2018 5 commits
    • Till Klocke's avatar
      Implementation of multiple targets based on PR #404 and #396 (#418) · 5d548496
      Till Klocke authored
      * Endpoint.Target is now Endpoint.Targets. This is its own type representing mutliple targets for a single DNS name while adding some convenience for sorting and comparing
      
      * Made everything compile and tests run through with the new Endpoint.Targets
      
      * The ingress source can now properly handle multiple target ips per host
      
      * Added custom conflict resolver, to better understand how conflict resolution has to work for me
      
      * My custom conflict resolver behaves a bit different than the PerResource resolver, therefore I needed to modify the expected test result
      
      Removed unnecessary FIXME
      
      * The ingress source now creates CNAME endpoints with multiple targets to let the DNS provider decide how to handle multiple CNAME targets. This could be interesting for weighted targets etc.
      
      * Adopted the expected results to the new way we create endpoints for CNAMEs
      
      * Removed Add method from Targets since manipulating the slice through here is unnecessary complicated and doesn't deliver enough convenience
      
      * Reverted ConflictResolver to the original one. There is some discussing to do what the best way is to handle conflicts
      
      * Added missing documenting comment to IsLess of Targets
      
      * Added documenting comments to Targets,Targets.Same and NewTargets to clarify their intention and usage
      
      * Service source now also generates endpoints with multiple targets
      
      * Service and Ingress source now sort all Targets for every Endpoint to make order of Targets predictable
      
      * Endpoints generated by the Google Cloud DNS provider now also have sorted Targets to make order of Targets predictable
      
      * Modified provider dyn to be able to compile with multi target changes
      
      * Fixed small nitpicks, so my code is acceptable
      
      * Fixed merge method after updating to new Targets. Replacing '!=' with .Same of course needs a boolean negation
      
      * Tests for dyn provider now also use the new Targets instead of Target
      
      * Simplified extractServiceIps as implied by linki to make it more readable
      
      * ref: change service ClusterIP retrieval again
      
      * Added entry to CHANGELOG.md describing the new features contained in this PR
      5d548496
    • Nick Jüttner's avatar
      DigitalOcean creates entries with host in them twice (#459) · f5b0d93e
      Nick Jüttner authored
      * DigitalOcean creates entries with host in them twice
      
      * Unit test
      
      * DigitalOcean creates entries with host in them twice (#459)
      
      * docs: cleanup changelog a little
      f5b0d93e
    • Nick Jüttner's avatar
      Using dep in travis to ensure all dependencies are installed (#471) · 1e22c32b
      Nick Jüttner authored
      * Using dep in travis to ensure all dependencies are installed
      
      * Using dep in travis to ensure all dependencies are installed
      
      * Using dep in travis to ensure all dependencies are installed
      
      * Using dep in travis to ensure all dependencies are installed
      1e22c32b
    • James Bowes's avatar
      Retrive all DNSimple response pages (#468) · 9bd5f060
      James Bowes authored
      * Retrive all DNSimple response pages
      
      The DNSimple API is paginated. Retrive all pages when requesting zones
      and records, so that none are skipped.
      
      When querying for a single record, ask for it by name. That way, there
      will be fewer pages to iterate through.
      
      * docs: add pagination support for dnsimple to changelog
      9bd5f060
    • jvassev's avatar
      Graceful handling of misconfigure password for dyn (#470) · 3293af66
      jvassev authored
      * Graceful handling of misconfigure password for dyn
      
      If a bad password is given for provider "dyn" then the next
      login attempt is at least 30minutes apart. This prevents an
      account from being suspended.
      
      Improve validation of flags for dyn provider. Add test for
      ValidateConfig() and Config.String()
      
      Also add --dyn-min-ttl option which sets the lower limit
      of a record's TTL. Ignored if 0 (the default).
      
      * docs: add graceful handling of misconfiguration to changelog
      3293af66
  18. 19 Feb, 2018 1 commit
    • jvassev's avatar
      Don't log passwords on start (#463) · 02f83397
      jvassev authored
      * Don't log passwords on start
      
      The two passwords configurable as flags (for infoblox and dyn) are
      masked now and not logged.
      
      * docs: add masking sensitive data in logs to changelog
      02f83397
  19. 09 Feb, 2018 2 commits