1. 13 Jul, 2017 9 commits
    • juanvallejo's avatar
      f28ffdb5
    • Kubernetes Submit Queue's avatar
      Merge pull request #48849 from nicksardo/gce-panic-fix · 74f19437
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 48555, 48849)
      
      GCE: Fix panic when service loadbalancer has static IP address
      
      Fixes #48848 
      
      ```release-note
      Fix service controller crash loop when Service with GCP LoadBalancer uses static IP (#48848, @nicksardo)
      ```
      74f19437
    • Kubernetes Submit Queue's avatar
      Merge pull request #48555 from redbaron/hostPath-and-subPath-symlink · 009858f1
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Fix subPath existence check to not follow symlink
      
      **What this PR does / why we need it**:
      Volume mounting logic introduced in #43775 and #45623 checks
      for subPath existence before attempting to create a directory,
      should subPath not be present.
      
      This breaks if subPath is a dangling symlink, os.Stat returns
      "do not exist" status, yet `os.MkdirAll` can't create directory
      as symlink is present at the given path.
      
      This patch makes existence check to use os.Lstat which works for
      normal files/directories as well as doesn't not attempt to follow
      symlink, therefore it's "do not exist" status is more reliable when
      making a decision whether to create directory or not.
      
      subPath symlinks can be dangling in situations where kubelet is
      running in a container itself with access to docker socket, such
      as CoreOS's kubelet-wrapper script
      
      **Release note**:
      ```release-note
      Fix pods failing to start when subPath is a dangling symlink from kubelet point of view, which can happen if it is running inside a container
      ```
      009858f1
    • Kubernetes Submit Queue's avatar
      Merge pull request #48845 from crimsonfaith91/upgrade-test · 222ac7be
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      add [sig-apps] identifier to relevant upgrade tests
      
      **What this PR does / why we need it**: This PR adds [sig-apps] identifier to relevant upgrade tests.
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: xref #48839
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      ```
      222ac7be
    • Nick Sardo's avatar
      98368d97
    • Kubernetes Submit Queue's avatar
      Merge pull request #48828 from crimsonfaith91/test-regex · 540cb782
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      add [sig-apps] prefix to workload e2e tests
      
      **What this PR does / why we need it**: This PR adds [sig-apps] prefix to workload e2e tests in accord to requirements of adding a SIG dashboard to testgrid. Refer PR #48781 for guidelines.
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      ```
      540cb782
    • Chao Xu's avatar
      Update CHANGELOG.md for v1.8.0-alpha.2. · ca32e8cc
      Chao Xu authored
      ca32e8cc
    • Kubernetes Submit Queue's avatar
      Merge pull request #48642 from freehan/gce-api-endpint · 3c080e83
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Support GCE alpha/beta api endpoint override
      
      fixes: https://github.com/kubernetes/kubernetes/issues/48568
      3c080e83
    • Kubernetes Submit Queue's avatar
      Merge pull request #48813 from shyamjvs/fix-inflight-handler · ef229eaf
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      maxinflight handler should let panicrecovery handler call NewLogged
      
      Fixes #48700 #48782 
      
      /cc @deads2k @sttts
      ef229eaf
  2. 12 Jul, 2017 31 commits