1. 11 Jan, 2017 12 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #38212 from mikedanese/kubeletauth · addc6cae
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 38212, 38792, 39641, 36390, 39005)
      
      Generate a kubelet CA and kube-apiserver cert-pair for kubelet auth.
      
      cc @cjcullen
      addc6cae
    • Kubernetes Submit Queue's avatar
      Merge pull request #39615 from gmarek/density_load_configs · 234c4358
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 39695, 37054, 39627, 39546, 39615)
      
      Add configs that run more advanced density and load tests
      
      Wojtek is on vacation this week - @timothysc can you please take a look? It's rather terrible, but I don't have a better idea on how to make parametric tests.
      
      cc @wojtek-t
      234c4358
    • Kubernetes Submit Queue's avatar
      Merge pull request #39546 from dashpole/dynamic_config_eviction_hard · a2da4f0c
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 39695, 37054, 39627, 39546, 39615)
      
      Use Dynamic Config in e2e_node inode eviction test
      
      Alternative solution to #39249.  Similar to solution proposed by @vishh in #36828.
      
      @Random-Liu @mtaufen
      a2da4f0c
    • Kubernetes Submit Queue's avatar
      Merge pull request #39627 from alejandroEsc/ae/kubelet/log · 87b9f6fa
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 39695, 37054, 39627, 39546, 39615)
      
      fixed error log that would cause two log lines to run into each other…
      
      **What this PR does / why we need it**:
      Fixed error log that would cause two log lines to run into each other. Logs running into each other can be reproduced by running local-up-cluster.sh on osx.
      
      
      **Release note**:
      ```NONE
      ```
      87b9f6fa
    • Kubernetes Submit Queue's avatar
      Merge pull request #37054 from tanshanshan/remove-repeat1 · 5aa177a8
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 39695, 37054, 39627, 39546, 39615)
      
      remove repeating const declaration
      
      **What this PR does / why we need it**:
      
      remove repeating const declaration  , and avoid const declaration in  loop
      
      Thanks.
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      ```
      5aa177a8
    • Kubernetes Submit Queue's avatar
      Merge pull request #39695 from ixdy/docker-build-pull · 844fa1b9
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 39695, 37054, 39627, 39546, 39615)
      
      Always --pull in docker build to ensure recent base images
      
      **What this PR does / why we need it**: By default, Docker will use a locally cached image rather than looking for a newer image. This can be problematic when using a common base image like debian:jessie, since you may end up unintentionally using a very old base image.
      
      I think everything here is only used on release paths, so it shouldn't affect any regular development workflows.
      
      **Release note**:
      
      ```release-note
      NONE
      ```
      844fa1b9
    • Jeff Grafton's avatar
      Update to debian-iptables-*:v5 · 9172bf63
      Jeff Grafton authored
      9172bf63
    • Jeff Grafton's avatar
    • Kubernetes Submit Queue's avatar
      Merge pull request #39491 from jayunit100/sched_Histogram_error · add3a08a
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 34488, 39511, 39619, 38342, 39491)
      
      Update FitError as a message component into the PodConditionUpdater.
      
      Fixes #20064 , after a roundabout volley of ideas, we ended up digging into existing Conditions for this, rather then a first class API object.  This is just a quick sketch of the skeleton minimal implementation, it should pretty much "just work".  I'll test it more later today.
      
      
      Release Note:
      ```
      Histogram data of predicate failures is contained in pod conditions and thus available to users by kubectl commands.
      ```
      add3a08a
    • Kubernetes Submit Queue's avatar
      Merge pull request #38342 from ymqytw/make_SPatch_delete_all_duplicates · ebf1a533
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 34488, 39511, 39619, 38342, 39491)
      
      Make StrategicPatch delete all matching maps in a merging list
      
      fixes #38332
      
      ```release-note
      NONE
      ```
      
      cc: @lavalamp @pwittrock
      ebf1a533
    • Kubernetes Submit Queue's avatar
      Merge pull request #39619 from deads2k/fed-20-rename · 609e3e38
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 34488, 39511, 39619, 38342, 39491)
      
      rename kubernetes-discovery to kube-aggregator
      
      Rename `kubernetes-discovery` to `kube-aggregator`.  Move and bulk rename.
      
      @kubernetes/sig-api-machinery-misc
      609e3e38
    • Kubernetes Submit Queue's avatar
      Merge pull request #39511 from zhouhaibing089/lru-time-ut · 7d2f7980
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 34488, 39511, 39619, 38342, 39491)
      
      use fake clock in lruexpiration cache test
      
      when the system clock is extremely slow(usually see in VMs), this [check](https://github.com/kubernetes/kubernetes/blob/master/pkg/util/cache/lruexpirecache.go#L74) might still return the value.  
      
      ```go
      if c.clock.Now().After(e.(*cacheEntry).expireTime) {
      	go c.remove(key)
      	return nil, false
      }
      ```
      
      that means even we set the ttl to be 0 second, the after check might still be false(because the clock is too slow, and thus equals).
      
      the change here helps to reduce flakes.
      7d2f7980
  2. 10 Jan, 2017 28 commits