1. 17 Apr, 2017 12 commits
  2. 16 Apr, 2017 2 commits
  3. 15 Apr, 2017 6 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #44344 from mikedanese/ubuntu-delete · b22a2980
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 44343, 44344)
      
      delete ubuntu kube-up
      
      ```release-note
      Remove deprecated ubuntu kube-up deployment.
      ```
      b22a2980
    • Kubernetes Submit Queue's avatar
      Merge pull request #44343 from mikedanese/ovirt-delete · 92ae06b5
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      delete ovirt kube-up
      
      untouched since 2014. I'm not sure what this file is.
      92ae06b5
    • Kubernetes Submit Queue's avatar
      Merge pull request #44423 from monopole/fixUserAgent · f05ce1e8
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Use OS-specific libs when computing client User-Agent in kubectl, etc.
      
      **What this PR does / why we need it**:
      
      The User-Agent reported by clients (e.g. kubectl) in request
      headers should include the name of the client executable
      but not the full path to that executable.
      
      This PR changes how this name is determined by using the
      operating-system specific package "path/filepath" (meant for
      working with file system paths) instead of the "path" package
      (meant for URL paths).
      
      This fixes a problem on the Windows OS in the case where, if the
      user has not set their PATH to point to the location of their
      client executable, the User-Agent includes the full path - which
      is unnecessary.
      
      Fixes: #44419
      
      ```release-note
      Use OS-specific libs when computing client User-Agent in kubectl, etc.
      ```
      f05ce1e8
    • Kubernetes Submit Queue's avatar
      Merge pull request #42498 from jcbsmpsn/add-jitter-to-rotation-threshold · 4e3bbe39
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 44364, 44361, 42498)
      
      Fix the certificate rotation threshold and add jitter.
      
      Adjusts the certificate rotation threshold to be fixed, with some jitter to
      spread out the load on the Certificate Signing Request API. The rotation
      threshold is fixed at 20% now, meaning when 20% of the certificate's total
      duration is remaining, the certificate manager will attempt to rotate, with
      jitter +/-10%. For certificates of duration 1 month that means they will
      rotate after 24 days, +/- 3 days.
      
      On a 6000 node cluster, assuming all nodes added at nearly the same time, this
      should result in 6000 nodes rotating spread over 6 days (total range of the
      jitter), or ~42 nodes / hour requesting new certificates.
      4e3bbe39
    • Kubernetes Submit Queue's avatar
      Merge pull request #44361 from caesarxuchao/move-v1-helpers · e4b51810
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 44364, 44361, 42498)
      
      Move v1 helpers
      
      The first 3 commits are other PRs.
      
      This PR move pkg/api/v1/helpers.go to a subpackage, which is almost symmetric to #44296, where pkg/api/helpers.go was moved.
      
      This PR is mostly mechanic, except that
      1. moved the 3 methods of Taint and Toleration to pkg/api/methods.go
      2. moved constants and types defined in v1/helpers.go to pkg/api/v1/annotataion_key_constants.go and nonstandard_types.go
      3. updated staging/copy.sh to copy pkg/api/helpers to client-go, it's otherwise removed from client-go because no other code in client-go depends on the package. Some test code in pkg/controller imports client-go/pkg/api/helpers. After moving api types to its own repo, we can remove these copies of utility function from client-go and ask users to use the ones in the main repo.
      
      (This PR breaks a cyclic import problem i met when I tried to move global variables pkg/api/Scheme and Registry to a subpackage)
      e4b51810
    • Kubernetes Submit Queue's avatar
      Merge pull request #44364 from mikedanese/delete-unbuilding · 515b089e
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      bazel: delete deb that doesn't build
      
      cmd/kube-aggregator is long gone.
      515b089e
  4. 14 Apr, 2017 20 commits