1. 01 Jul, 2016 26 commits
  2. 30 Jun, 2016 14 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
    • Jordan Liggitt's avatar
      993ab1d8
    • k8s-merge-robot's avatar
      Merge pull request #28036 from ericchiang/oidc-auth-plugin-dont-error-if-provider-is-unavailable · 038ac428
      k8s-merge-robot authored
      Automatic merge from submit-queue
      
      oidc auth plugin: don't hard fail if provider is unavailable
      
      When using OpenID Connect authentication, don't cause the API
      server to fail if the provider is unavailable. This allows
      installations to run OpenID Connect providers after starting the
      API server, a common case when the provider is running on the
      cluster itself.
      
      Errors are now deferred to the authenticate method.
      
      cc @sym3tri @erictune @aaronlevy @kubernetes/sig-auth
      038ac428
    • k8s-merge-robot's avatar
      Merge pull request #28258 from vishh/28231 · ab37fbf4
      k8s-merge-robot authored
      Automatic merge from submit-queue
      
      [kubelet] Allow opting out of automatic cloud provider detection in kubelet. By default kubelet will auto-detect cloud providers
      
      fixes #28231
      ab37fbf4
    • Daniel Smith's avatar
      Merge pull request #28303 from ixdy/make-node-e2e-fail · 3228a51f
      Daniel Smith authored
      Make node e2e exit nonzero on test failures
      3228a51f
    • k8s-merge-robot's avatar
      Merge pull request #25873 from simonswine/fix-flocker-restart-master · b1b51a6f
      k8s-merge-robot authored
      Automatic merge from submit-queue
      
      Fix problems with container restarts and flocker volumes
      
      [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/.github/PULL_REQUEST_TEMPLATE.md?pixel)]()
      
      The issue is described in #22436. A pod with a flocker volume attached can't be restarted. A complete new pod has to be created, then everything is working fine.
      
      The problem is around the `isReady` check. This ready state is not getting cleaned up for restarting containers. IMHO we don't need this ready state stored at all. Maybe it was meant to not call the flocker API during pod restarts, but I would rather have it removed... (happy about some hints why we need this lines)
      
      I tested it in a AWS/flocker cluster: starting/restarting/rescheduling on another node (in the same zone) works perfectly fine.
      b1b51a6f
    • Jeff Grafton's avatar
      Make node e2e exit nonzero on test failures · 821e6ec2
      Jeff Grafton authored
      821e6ec2
    • k8s-merge-robot's avatar
      Merge pull request #28247 from girishkalele/skydns_godep_up · c3e9485d
      k8s-merge-robot authored
      Automatic merge from submit-queue
      
      Bump skydns godeps to latest
      
      Update Godeps for github.com/skynetservices/skydns and miekg/dns.
      
      Bump kubedns version to 1.6 with latest skynetservices/skydns code
          
      Built kube-dns for all architectures and pushed containers to gcr.io.
      c3e9485d
    • Minhan Xia's avatar
      switch back to promiscuous-bridge mode · 6db354b1
      Minhan Xia authored
      6db354b1