1. 15 Jun, 2017 1 commit
  2. 13 Jun, 2017 11 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #47321 from mindprince/issue-47216-fix-bad-node-e2e-gpu · 4a8c245e
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Fix bad check in node e2e tests for GPUs.
      
      When no nvidia device was attached, the -ne check had a syntax error:
      
          sh: -ne: argument expected
      
      This resulted in `Success` being echoed and the test passing incorrectly.
      This was found while debugging issue #47216
      
      /release-note-none
      /sig node
      /area node-e2e
      /kind bug
      4a8c245e
    • Kubernetes Submit Queue's avatar
      Merge pull request #47375 from ixdy/debian-iptables-v8 · 54f628ad
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 46678, 45545, 47375)
      
      bazel: update debian-iptables-amd64 digest
      
      **What this PR does / why we need it**: upstream debian has fixed several CVEs recently, so we should apply those fixes:
      * CVE-2017-2616
      * CVE-2017-6512
      
      x-ref #47386
      
      **Special notes for your reviewer**: nothing has been pushed yet, so this will likely fail many of the tests.
      
      Do you think these version numbers make sense? We also need to fix debian-iptables v5, and I don't know what to do there. (v5.1?)
      
      **Release note**:
      
      ```release-note
      NONE
      ```
      /assign @timstclair
      54f628ad
    • Kubernetes Submit Queue's avatar
      Merge pull request #45545 from ocadotechnology/44461-gophercloud-bump · 456293ba
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 46678, 45545, 47375)
      
      update gophercloud/gophercloud dependency
      
      **What this PR does / why we need it**:
      
      **Which issue this PR fixes** 
      fixes #44461
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      update gophercloud/gophercloud dependency for reauthentication fixes
      ```
      456293ba
    • Kubernetes Submit Queue's avatar
      Merge pull request #46678 from tacy/fix46039 · 117b6248
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      fix#46039: iptables proxier need use '--bind-address' if set
      
      **What this PR does / why we need it**: 
      iptables proxier need use '--bind-address' if set
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #46039 
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      ```
      117b6248
    • Kubernetes Submit Queue's avatar
      Merge pull request #47124 from andyxning/remove_sync_loop_health_check · 17244ea5
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 47000, 47188, 47094, 47323, 47124)
      
      fix sync loop health check
      
      This PR will do error logging about the fall behind sync for kubelet instead of sync loop healthz checking.
      
      The reason is kubelet can not do sync loop and therefore can not update sync loop time when there is any runtime error, such as docker hung. 
      
      When there is any runtime error, according to current implementation, kubelet will not do sync operation and thus kubelet's sync loop time will not be updated. This will make when there is any runtime error, kubelet will also return non 200 response status code when accessing healthz endpoint. This is contrary with #37865 which prevents kubelet from being killed when docker hangs.
      
      **Release note**:
      ```release-note
      fix sync loop health check with seperating runtime errors
      ```
      
      /cc @yujuhong @Random-Liu @dchen1107
      17244ea5
    • Kubernetes Submit Queue's avatar
      Merge pull request #47323 from karataliu/dockershim · b034a54e
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 47000, 47188, 47094, 47323, 47124)
      
      Fix hostconfig device map logic in dockershim.
      
      **What this PR does / why we need it**:
      Fixes for device injection logic in dockershim , please help verify e2e run.
      
      Should do updateCreateConfig before Resources assignment.
      
      Related change:
      https://github.com/kubernetes/kubernetes/pull/46744/files#diff-c7dd39479fd733354254e70845075db5L137
      
      
      **Which issue this PR fixes**
      https://github.com/kubernetes/kubernetes/issues/47216
      
      **Special notes for your reviewer**:
      
      **Release note**:
      ```release-note
      ```
      b034a54e
    • Kubernetes Submit Queue's avatar
      Merge pull request #47094 from cheftako/requestCAFile · 55f887e9
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 47000, 47188, 47094, 47323, 47124)
      
      Set up proxy certs for Aggregator.
      
      Working on fixing https://github.com/kubernetes/kubernetes/issues/43716.
      This will create the necessary certificates.
      On GCE is will upload those certificates to Metadata.
      They are then pulled down on to the kube-apiserver.
      They are written to the /etc/src/kubernetes/pki directory.
      Finally they are loaded vi the appropriate command line flags.
      The requestheader-client-ca-file can be seen by running the following:-
      kubectl get ConfigMap extension-apiserver-authentication --namespace=kube-system -o yaml
      
      **What this PR does / why we need it**: 
      This PR creates a request header CA. It also creates a proxy client cert/key pair. 
      It causes these files to end up on kube-apiserver and set the CLI flags so they are properly loaded.
      Without it the customer either has to set them up themselves or re-use the master CA which is a security vulnerability.
      Currently this creates everything on GCE.
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #43716
      
      **Special notes for your reviewer**:
      55f887e9
    • Kubernetes Submit Queue's avatar
      Merge pull request #47188 from caseydavenport/calico-typha · b01e8d98
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 47000, 47188, 47094, 47323, 47124)
      
      Add Calico typha agent
      
      **What this PR does / why we need it**:
      
      - Adds the Calico typha agent with autoscaling to the GCE scripts. 
      - Adds logic to adjust Calico resource requests based on cluster size.
      
      Fixes https://github.com/kubernetes/kubernetes/issues/47269
      
      **Special notes for your reviewer**:
      
      CC @dnardo 
      
      **Release note**:
      ```release-note
      NONE
      ```
      b01e8d98
    • Kubernetes Submit Queue's avatar
      Merge pull request #47000 from caesarxuchao/fix-gc-orphan · 3b05e190
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 47000, 47188, 47094, 47323, 47124)
      
      GC should retry on patch error
      
      Fixing https://github.com/kubernetes/kubernetes/issues/46998.
      
      This is fixing a bug, so applying the 1.7 milestone.
      3b05e190
    • Kubernetes Submit Queue's avatar
      Merge pull request #47293 from superbrothers/fix-completion · 208c2538
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Fix missing __kubectl_parse_config
      
      **What this PR does / why we need it**:
      
      This PR fixes the broken completion of kubectl config use-context. I checked that the completions of kubectl config use-context, --user and --cluster work correctly.
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #29386 
      
      **Special notes for your reviewer**: @pwittrock @janetkuo
      
      **Release note**:
      
      ```release-note
      NONE
      ```
      208c2538
    • Dawn Chen's avatar
      Merge pull request #47359 from ixdy/dont-delete-docker-image · bde35785
      Dawn Chen authored
      Don't delete docker image if building a release
      bde35785
  3. 12 Jun, 2017 15 commits
  4. 11 Jun, 2017 7 commits
  5. 10 Jun, 2017 6 commits