1. 23 Aug, 2019 2 commits
  2. 22 Aug, 2019 1 commit
  3. 20 Aug, 2019 5 commits
  4. 16 Aug, 2019 3 commits
  5. 15 Aug, 2019 1 commit
  6. 14 Aug, 2019 2 commits
  7. 13 Aug, 2019 5 commits
  8. 07 Aug, 2019 1 commit
    • Daniel Herman's avatar
      fix: support namespaces on the hostnames in istio gateway · 38a20407
      Daniel Herman authored
      One feature that's supported for the Istio Gateway resource is the
      ability to restrict what namespace may provide a VirtualService for
      a given hostname/domain by specifying it in the form
      `my-namespace/my-domain.com` which restricts the availability of
      `my-domain.com` to the `my-namespace` namespace.
      
      When creating the associated DNS records, the namespace should not
      be included.
      38a20407
  9. 03 Aug, 2019 1 commit
    • Helgi Þormar Þorbjörnsson's avatar
      Add the AWS Hosted Zone ID to log info · bccffc25
      Helgi Þormar Þorbjörnsson authored
      Useful when the private/public zones are named the same but a problem happens in one of them
      
      Additionally adds info about which Hosted Zone AWS Batch errors are happening in
      
      ```
      level=error msg="InvalidChangeBatch: [Tried to create resource record set [name=woof.service.example.com., type=CNAME, set-identifier=legacy] but it already exists, Tried to create resource record set [name=best.service.example.com., type=CNAME, set-identifier=legacy] but it already exists, Tried to create resource record set [name=better.service.example.com., type=CNAME, set-identifier=legacy] but it already exists, Tried to create resource record set [name=my.service.example.com., type=CNAME, set-identifier=legacy] but it already exists]\n\tstatus code: 400, request id: XXX-XXX-XXX-XX"
      ```
      bccffc25
  10. 31 Jul, 2019 3 commits
  11. 30 Jul, 2019 3 commits
  12. 29 Jul, 2019 4 commits
  13. 26 Jul, 2019 1 commit
  14. 24 Jul, 2019 1 commit
  15. 23 Jul, 2019 1 commit
    • Myles Gray's avatar
      Changed ttlMaximum to MaxInt32 to allow compilation on 32bit machines · 231d0701
      Myles Gray authored
      In its current state, ttlMaximum causes make to fail build with error:
      source/source.go:71:39: constant 4294967295 overflows int
      
      Because math.MaxUint32 is an untyped integer constant it is converted
      to type int when used as an interface param, type int is signed,
      MaxUint32 is larger than MaxInt32 and causes the type int to overflow.
      
      Converting ttlMaximum to MaxInt32 stops this overflow.
      231d0701
  16. 22 Jul, 2019 1 commit
  17. 19 Jul, 2019 2 commits
  18. 17 Jul, 2019 3 commits