1. 12 Mar, 2018 2 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #60856 from jiayingz/race-fix · a3f40dd8
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.
      
      Fixes the races around devicemanager Allocate() and endpoint deletion.
      
      There is a race in predicateAdmitHandler Admit() that getNodeAnyWayFunc()
      could get Node with non-zero deviceplugin resource allocatable for a
      non-existing endpoint. That race can happen when a device plugin fails,
      but is more likely when kubelet restarts as with the current registration
      model, there is a time gap between kubelet restart and device plugin
      re-registration. During this time window, even though devicemanager could
      have removed the resource initially during GetCapacity() call, Kubelet
      may overwrite the device plugin resource capacity/allocatable with the
      old value when node update from the API server comes in later. This
      could cause a pod to be started without proper device runtime config set.
      
      To solve this problem, introduce endpointStopGracePeriod. When a device
      plugin fails, don't immediately remove the endpoint but set stopTime in
      its endpoint. During kubelet restart, create endpoints with stopTime set
      for any checkpointed registered resource. The endpoint is considered to be
      in stopGracePeriod if its stoptime is set. This allows us to track what
      resources should be handled by devicemanager during the time gap.
      When an endpoint's stopGracePeriod expires, we remove the endpoint and
      its resource. This allows the resource to be exported through other channels
      (e.g., by directly updating node status through API server) if there is such
      use case. Currently endpointStopGracePeriod is set as 5 minutes.
      
      Given that an endpoint is no longer immediately removed upon disconnection,
      mark all its devices unhealthy so that we can signal the resource allocatable
      change to the scheduler to avoid scheduling more pods to the node.
      When a device plugin endpoint is in stopGracePeriod, pods requesting the
      corresponding resource will fail admission handler.
      
      Tested:
      Ran GPUDevicePlugin e2e_node test 100 times and all passed now.
      
      
      
      **What this PR does / why we need it**:
      
      **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*:
      Fixes https://github.com/kubernetes/kubernetes/issues/60176
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      Fixes the races around devicemanager Allocate() and endpoint deletion.
      ```
      a3f40dd8
    • Kubernetes Submit Queue's avatar
      Merge pull request #60997 from MrHohn/e2e-fix-cleanup-svc-regional · 36058cb0
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.
      
      [e2e service] Fix CleanupGCEResources for regional test
      
      *What this PR does / why we need it**:
      From https://k8s-testgrid.appspot.com/google-gke-staging#gke-staging-1-8-1-9-upgrade-regional-cluster&width=20, regional cluster test is failing because the GCE resource cleanup function attempts to parse region from `--gcp-zone` while regional cluster only set `--gcp-region`.
      
      This PR pipes region into the cleanup function as well. This will need to be cherrypicked to 1.8 and 1.9.
      
      **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*:
      Fixes #NONE 
      
      **Special notes for your reviewer**:
      /assign @bowei @wojtek-t 
      cc @nikhiljindal to see if there is anything should be fixed for federation.
      
      **Release note**:
      
      ```release-note
      NONE
      ```
      36058cb0
  2. 11 Mar, 2018 1 commit
  3. 10 Mar, 2018 4 commits
  4. 09 Mar, 2018 18 commits
  5. 08 Mar, 2018 14 commits
  6. 07 Mar, 2018 1 commit