1. 02 Jul, 2016 3 commits
  2. 01 Jul, 2016 31 commits
  3. 30 Jun, 2016 6 commits
    • Matt Liggett's avatar
      Add printf formatting for rrset objects. · a8b1c2e9
      Matt Liggett authored
      Without this you just get two pointers in the debug log.
      
      Before:
      
      I0627 21:48:44.136615       1 dns.go:215] Existing recordset {0xc820168830 0xc820691540} is not equal to needed recordset &{0xc820168848 0xc820686040}, removing existing and adding needed.
      
      After:
      
      I0627 22:26:46.221856       1 dns.go:215] Existing recordset                <(clouddns) "federated-service.e2e-tests-service-cuza5.federation.svc.us-central1-c.us-central1.kube.5yetis.net." type=CNAME rrdatas=["federated-service.e2e-tests-service-cuza5.federation.svc.us-central1.kube.5yetis.net."] ttl=180>
      I0627 22:26:46.221885       1 dns.go:216] ... not equal to needed recordset <(clouddns) "federated-service.e2e-tests-service-cuza5.federation.svc.us-central1-c.us-central1.kube.5yetis.net." type=CNAME rrdatas=["federated-service.e2e-tests-service-cuza5.federation.svc.us-central1.kube.5yetis.net."] ttl=180>
      I0627 22:26:46.221919       1 dns.go:217] ... removing existing and adding needed.
      a8b1c2e9
    • k8s-merge-robot's avatar
      Merge pull request #27049 from andreykurilin/kubectl_help · 23e7b665
      k8s-merge-robot authored
      Automatic merge from submit-queue
      
      Implement custom help command for kubectl
      
      ```release-note
      * kubectl help now provides "Did you mean this?" suggestions for typo/invalid command names.
      ```
      
      Custom implementation of help command allows to print `Did you mean this?` with
      suggestions, which is missed in embed help command from github.com/spf13/cobra
      
      Also, it can be extended with different search features. At this patch, help
      command searches query in short descriptions of commands in case of mismatch
      with commands names.
      
      fixes #25234
      23e7b665
    • k8s-merge-robot's avatar
      Merge pull request #28308 from quinton-hoole/2016-06-30-fix-service-found-true · 97736f02
      k8s-merge-robot authored
      Automatic merge from submit-queue
      
      Federated Services e2e: Simplify logic and logging around verificatio…
      
      Simplify logic and logging around verification of underlying services.
      
      Fixes #28269.
      
      Without this PR, service verification in 4 of our e2e tests sometimes fails.
      97736f02
    • k8s-merge-robot's avatar
      Merge pull request #28299 from freehan/nodee2e · 5478aa82
      k8s-merge-robot authored
      Automatic merge from submit-queue
      
      switch back to promiscuous-bridge mode
      
      fix: #27498
      5478aa82
    • Andrey Kurilin's avatar
      Implement custom help command for kubectl · 48d47b10
      Andrey Kurilin authored
      Own implemenation of help command allows to print `Did you mean this?` with
      suggestions, which is missed in embed help command from github.com/spf13/cobra
      
      Also, it can be extended with different search features. At this patch, help
      command search query in short descriptions of commands in case of mismatch
      with commands names.
      
      fixes #25234
      48d47b10
    • Quinton Hoole's avatar
      Federated Services e2e: Simplify logic and logging around verification of… · bc6e6265
      Quinton Hoole authored
      Federated Services e2e: Simplify logic and logging around verification of services in underlying clusters.  Fixes #28269
      bc6e6265