Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated cherry pick of #61549 upstream release 1.10 #69049

This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jun 1, 2018

  1. Merge pull request kubernetes#64417 from andyzhangx/automated-cherry-…

    …pick-of-#64383-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64383: fix azure file size grow issue
    
    Cherry pick of kubernetes#64383 on release-1.10.
    
    kubernetes#64383: fix azure file size grow issue
    Kubernetes Submit Queue committed Jun 1, 2018
    Configuration menu
    Copy the full SHA
    b850227 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#63448 from dims/automated-cherry-pick-o…

    …f-#62505-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#62505: update godeps to use latest pflag
    
    Cherry pick of kubernetes#62505 on release-1.10.
    
    kubernetes#62505: update godeps to use latest pflag
    
    ```release-note
    Show help for deprecated Kubelet flags
    ```
    Kubernetes Submit Queue committed Jun 1, 2018
    Configuration menu
    Copy the full SHA
    8959a0a View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#64433 from jsafrane/automated-cherry-pi…

    …ck-of-#63303-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63303: Return attach error to A/D controller.
    
    Cherry pick of kubernetes#63303 on release-1.10.
    
    kubernetes#63303: Return attach error to A/D controller.
    
    ```release-note
    Fixed error reporting of CSI volumes attachment.
    ```
    Kubernetes Submit Queue committed Jun 1, 2018
    Configuration menu
    Copy the full SHA
    7aa08d5 View commit details
    Browse the repository at this point in the history
  4. Fix kubelet flags.

    Signed-off-by: Lantao Liu <lantaol@google.com>
    Random-Liu committed Jun 1, 2018
    Configuration menu
    Copy the full SHA
    16967eb View commit details
    Browse the repository at this point in the history
  5. Fix extra-log flag for node e2e.

    Signed-off-by: Lantao Liu <lantaol@google.com>
    Random-Liu committed Jun 1, 2018
    Configuration menu
    Copy the full SHA
    560f0e2 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#64628 from Random-Liu/automated-cherry-…

    …pick-of-#62670-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#62670: Fix kubelet flags.
    
    Cherry pick of kubernetes#62670 on release-1.10.
    
    kubernetes#62670: Fix kubelet flags.
    Kubernetes Submit Queue committed Jun 1, 2018
    Configuration menu
    Copy the full SHA
    74697e1 View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#64432 from jsafrane/automated-cherry-pi…

    …ck-of-#64026-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64026: Add SELinux support to CSI
    
    Cherry pick of kubernetes#64026 on release-1.10.
    
    kubernetes#64026: Add GetSELinuxSupport to mounter.
    
    ```release-note
    Fixed SELinux relabeling of CSI volumes.
    ```
    Kubernetes Submit Queue committed Jun 1, 2018
    Configuration menu
    Copy the full SHA
    d8f9e51 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2018

  1. Merge pull request kubernetes#64629 from Random-Liu/automated-cherry-…

    …pick-of-#62753-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#62753: Fix extra-log flag for node e2e.
    
    Cherry pick of kubernetes#62753 on release-1.10.
    
    kubernetes#62753: Fix extra-log flag for node e2e.
    Kubernetes Submit Queue committed Jun 2, 2018
    Configuration menu
    Copy the full SHA
    5fa0f56 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a608993 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2018

  1. fix formatAndMount func issue on Windows

    fix comments
    andyzhangx committed Jun 4, 2018
    Configuration menu
    Copy the full SHA
    50b9c45 View commit details
    Browse the repository at this point in the history
  2. add formatAndMount unit test on Windows

    fix comments
    
    fix comments
    
    fix comments
    
    fix comments
    andyzhangx committed Jun 4, 2018
    Configuration menu
    Copy the full SHA
    be2e53c View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#64211 from MrHohn/automated-cherry-pick…

    …-of-#63770-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63770: Implement Skip() for ingress upgrade test
    
    Cherry pick of kubernetes#63770 on release-1.10.
    
    kubernetes#63770: Implement Skip() for ingress upgrade test
    
    ```release-note
    NONE
    ```
    Kubernetes Submit Queue committed Jun 4, 2018
    Configuration menu
    Copy the full SHA
    8eeecb0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#62938 from pospispa/60764-StorageObject…

    …InUseProtection-downgrade-issue-cherry-pick-into-K8s-1.10
    
    Automatic merge from submit-queue.
    
    cherry-pick into K8s 1.10: Always Start pvc-protection-controller and pv-protection-controller
    
    **What this PR does / why we need it**:
    StorageObjectInUseProtection feature is enabled by default in K8s 1.10+. Assume K8s cluster is used with this feature enabled, i.e. finalizers are added to all PVs and PVCs. In case the K8s cluster admin disables the StorageObjectInUseProtection feature and a user deletes a PVC that is not in active use by a pod then the PVC is not removed from the system because of the finalizer. Therefore, the user will have to remove the finalizer manually in order to have the PVC removed from the system. Note: deleted PVs won't be removed from the system also because of finalizers.
    
    This problem was fixed in [K8s 1.9.6](https://github.com/kubernetes/kubernetes/releases/tag/v1.9.6) in PR kubernetes#61370
    This problem is also fixed in K8s 1.11+ in PR kubernetes#61324
    However, this problem is not fixed in K8s 1.10, that's why I've cherry-picked the PR kubernetes#61324 and proposing to merge it into K8s 1.10.
    
    **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 
    N/A
    
    Related issue: kubernetes#60764
    
    **Special notes for your reviewer**:
    
    **Release note**:
    
    ```release-note
    In case StorageObjectInUse feature is disabled and Persistent Volume (PV) or Persistent Volume Claim (PVC) contains a finalizer and the PV or PVC is deleted it is not automatically removed from the system. Now, it is automatically removed.
    ```
    Kubernetes Submit Queue committed Jun 4, 2018
    Configuration menu
    Copy the full SHA
    bbcb3aa View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#64658 from vladimirvivien/automated-che…

    …rry-pick-of-#64519-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64519: CSI fix for gRPC conn leak, test updates
    
    Cherry pick of kubernetes#64519 on release-1.10.
    
    kubernetes#64519: CSI fix for gRPC conn leak, test updates
    
    ```release-note
    Fixed CSI gRPC connection leak during volume operations.
    ```
    Kubernetes Submit Queue committed Jun 4, 2018
    Configuration menu
    Copy the full SHA
    4ab8dcc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    563a1eb View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#64631 from msau42/automated-cherry-pick…

    …-of-#64351-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    [1.10] Automated cherry pick of kubernetes#64351: Only mount subpath as readonly if specified in volumeMount
    
    Automated cherry pick of kubernetes#64351: Only mount subpath as readonly if specified in volumeMount
    
    **Release note**:
    
    ```release-note
    Fixes issue for readOnly subpath mounts for SELinux systems and when the volume mountPath already existed in the container image.
    ```
    Kubernetes Submit Queue committed Jun 4, 2018
    Configuration menu
    Copy the full SHA
    5ca598b View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2018

  1. pkg: kubelet: remote: increase grpc client default size

    Signed-off-by: Antonio Murdaca <runcom@redhat.com>
    runcom authored and Mikaël Cluseau committed Jun 6, 2018
    Configuration menu
    Copy the full SHA
    991c862 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    680004b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    69c7cdc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5ed1a5a View commit details
    Browse the repository at this point in the history
  5. Never clean backoff in job controller

    soltysh authored and cblecker committed Jun 6, 2018
    Configuration menu
    Copy the full SHA
    83fb1c0 View commit details
    Browse the repository at this point in the history
  6. Test job backoffLimit correctly

    janetkuo authored and cblecker committed Jun 6, 2018
    Configuration menu
    Copy the full SHA
    5e072b3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a6d6d69 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    17538dc View commit details
    Browse the repository at this point in the history
  9. Add/Update CHANGELOG-1.10.md for v1.10.4.

    Anago GCB committed Jun 6, 2018
    Configuration menu
    Copy the full SHA
    c2a8c9c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    339a04a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    44732e2 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    2861af7 View commit details
    Browse the repository at this point in the history
  13. Update dependency

    yguo0905 committed Jun 6, 2018
    Configuration menu
    Copy the full SHA
    31d3a18 View commit details
    Browse the repository at this point in the history
  14. Skip Sysctl tests against v1.11.0-alpha.0 and newer

    1.10 e2e tests get run against 1.11.0+ masters during upgrade tests.
    This fails as Sysctl moved from annotations to fields, so we should
    check the version and avoid running these tests.
    dims committed Jun 6, 2018
    Configuration menu
    Copy the full SHA
    252286e View commit details
    Browse the repository at this point in the history
  15. Add missing binaryData field to the ConfigMap Hash

    In 7e158fb, we added a BinaryData
    to ConfigMap, but totally forgot to add it to the hash method.
    dims committed Jun 6, 2018
    Configuration menu
    Copy the full SHA
    eded53e View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2018

  1. Merge pull request kubernetes#64846 from janetkuo/automated-cherry-pi…

    …ck-of-#64797-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Skip updating status for DaemonSet being deleted
    
    **What this PR does / why we need it**: kubernetes#64313, kubernetes#64797 (comment)
    
    **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 #
    
    **Special notes for your reviewer**:
    
    **Release note**:
    
    ```release-note
    Skip updating status for DaemonSet being deleted.
    ```
    Kubernetes Submit Queue committed Jun 7, 2018
    Configuration menu
    Copy the full SHA
    d199bf3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#64683 from andyzhangx/automated-cherry-…

    …pick-of-#63248-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63248: fix formatAndMount func issue on Windows
    
    Cherry pick of kubernetes#63248 on release-1.10.
    
    kubernetes#63248: fix formatAndMount func issue on Windows
    Kubernetes Submit Queue committed Jun 7, 2018
    Configuration menu
    Copy the full SHA
    ae94ada View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#64852 from dims/skip-tests-as-we-promot…

    …ed-sysctl-annotations-to-fields-2
    
    Automatic merge from submit-queue.
    
    Skip Sysctl tests against v1.11.0-alpha.0 and newer
    
    **What this PR does / why we need it**:
    
    1.10 e2e tests get run against 1.11.0+ masters during upgrade tests.
    This fails as Sysctl moved from annotations to fields, so we should
    check the version and avoid running these tests.
    
    **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 kubernetes#64845
    
    **Special notes for your reviewer**:
    
    **Release note**:
    
    ```release-note
    NONE
    ```
    Kubernetes Submit Queue committed Jun 7, 2018
    Configuration menu
    Copy the full SHA
    2e433e8 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2018

  1. Configuration menu
    Copy the full SHA
    08ca867 View commit details
    Browse the repository at this point in the history
  2. add IsLikelyNotMountPoint test on Windows

    fix comments
    
    fix comments on unit test
    
    fix comments
    andyzhangx committed Jun 8, 2018
    Configuration menu
    Copy the full SHA
    1cd60b1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b7923b7 View commit details
    Browse the repository at this point in the history
  4. Update to gazelle 0.10.1

    ixdy committed Jun 8, 2018
    Configuration menu
    Copy the full SHA
    67a44fb View commit details
    Browse the repository at this point in the history
  5. Vendor gazelle

    thockin authored and ixdy committed Jun 8, 2018
    Configuration menu
    Copy the full SHA
    768ebcd View commit details
    Browse the repository at this point in the history
  6. Vendor kazel

    thockin authored and ixdy committed Jun 8, 2018
    Configuration menu
    Copy the full SHA
    1fee7b1 View commit details
    Browse the repository at this point in the history
  7. Remove kube::util::go_install_from_commit

    thockin authored and ixdy committed Jun 8, 2018
    Configuration menu
    Copy the full SHA
    54f2c1d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9a1ba6f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fbfed2d View commit details
    Browse the repository at this point in the history
  10. Ensure /etc/hosts has a header always - Fix conformance test

    We have 2 scenarios where we copy /etc/hosts
    - with host network (we just copy the /etc/hosts from node)
    - without host network (create a fresh /etc/hosts from pod info)
    
    We are having trouble figuring out whether a /etc/hosts in a
    pod/container has been "fixed-up" or not. And whether we used
    host network or a fresh /etc/hosts in the various ways we start
    up the tests which are:
    
    - VM/box against a remote cluster
    - As a container inside the k8s cluster
    - DIND scenario in CI where test runs inside a managed container
    
    Please see previous mis-guided attempt to fix this problem at
    ba20e63 In this commit we revert
    the code from there as well.
    
    So we should make sure:
    - we always add a header if we touched the file
    - we add slightly different headers so we can figure out if we used the
      host network or not.
    
    Update the test case to inject /etc/hosts from node to another path
    (/etc/hosts-original) as well and use that to compare.
    dims authored and dghubble committed Jun 8, 2018
    Configuration menu
    Copy the full SHA
    00998d0 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2018

  1. Merge pull request kubernetes#64929 from ixdy/automated-cherry-pick-o…

    …f-#61575-kubernetes#57600-kubernetes#62499-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#61575: Remove all upstream BUILD, BUILD.bazel, and WORKSPACE kubernetes#57600: Vendor gazelle kubernetes#62499: Update kazel to include openapi tag detection fix
    
    Cherry pick of kubernetes#61575 kubernetes#57600 kubernetes#62499 on release-1.10.
    
    kubernetes#61575: Remove all upstream BUILD, BUILD.bazel, and WORKSPACE
    kubernetes#57600: Vendor gazelle
    kubernetes#62499: Update kazel to include openapi tag detection fix
    
    This is an alternative to kubernetes#64928, and would fix kubernetes#64925.
    
    We can't just cherry-pick kubernetes#57600, since there was a prerequisite PR and a fixup PR afterwards.
    Kubernetes Submit Queue committed Jun 11, 2018
    Configuration menu
    Copy the full SHA
    af0d357 View commit details
    Browse the repository at this point in the history
  2. Cherry pick of kubernetes#64255: fix field removal in mutating admiss…

    …ion webhooks
    
    Unclean cherry-pick.
    sttts committed Jun 11, 2018
    Configuration menu
    Copy the full SHA
    a55e7d3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b1c75eb View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#64848 from yguo0905/automated-cherry-pi…

    …ck-of-#64727-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64727: Update GCE cloud provider to use Cloud TPU v1 API
    
    Cherry pick of kubernetes#64727 on release-1.10.
    
    kubernetes#64727: Update GCE cloud provider to use Cloud TPU v1 API
    Kubernetes Submit Queue committed Jun 11, 2018
    Configuration menu
    Copy the full SHA
    0e7c3d6 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#64813 from cblecker/automated-cherry-pi…

    …ck-of-#58972-kubernetes#63650-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#58972: Fix job's backoff limit for restart policy OnFailure kubernetes#63650: Never clean backoff in job controller
    
    Cherry pick of kubernetes#58972 kubernetes#63650 on release-1.10.
    
    kubernetes#58972: Fix job's backoff limit for restart policy OnFailure
    kubernetes#63650: Never clean backoff in job controller
    
    Fixes kubernetes#62382.
    
    **Release Note:**
    ```release-note
    Fix regression in `v1.JobSpec.backoffLimit` that caused failed Jobs to be restarted indefinitely.
    ```
    Kubernetes Submit Queue committed Jun 11, 2018
    Configuration menu
    Copy the full SHA
    8cfe826 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#64842 from jiayingz/automated-cherry-pi…

    …ck-of-#63631-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63631: Add gpu cluster upgrade test.
    
    Cherry pick of kubernetes#63631 on release-1.10.
    
    kubernetes#63631: Add gpu cluster upgrade test.
    
    We added a gpu upgrade test config from 1.9-1.10 (kubernetes/test-infra#8262). From the test logs, looks like the cluster upgrade test is using the e2e test version from the latest 1.10 release which doesn't have the newly added GPUUpgrade test. There doesn't seem to be an easy way to use the e2e test version from a head release while running the upgrade test for older release version. Cherry-picking the upgrade test to 1.10 branch so that we can gpu upgrade test from 1.9 to 1.10.
    Kubernetes Submit Queue committed Jun 11, 2018
    Configuration menu
    Copy the full SHA
    cd32ec6 View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#64808 from feiskyer/automated-cherry-pi…

    …ck-of-#64739-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64739: Fix panic while provisioning Azure security group rules
    
    Cherry pick of kubernetes#64739 on release-1.10.
    
    kubernetes#64739: Fix panic while provisioning Azure security group rules
    Kubernetes Submit Queue committed Jun 11, 2018
    Configuration menu
    Copy the full SHA
    e0740b1 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2018

  1. Configuration menu
    Copy the full SHA
    3e48393 View commit details
    Browse the repository at this point in the history
  2. Fix setup of configmap/secret/projected/downwardapi

    Only call setup after they are found; otherwise
    we are left with orphan directories that are never
    cleaned up.
    gnufied committed Jun 12, 2018
    Configuration menu
    Copy the full SHA
    ea65d5f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    81f0f51 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2018

  1. Merge pull request kubernetes#64804 from mcluseau/automated-cherry-pi…

    …ck-of-#63977-kubernetes#64672-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63977: pkg: kubelet: remote: increase grpc client default size kubernetes#64672: pkg: kubelet: remote: increase grpc client default size to
    
    Cherry pick of kubernetes#63977 kubernetes#64672 on release-1.10.
    
    kubernetes#63977: pkg: kubelet: remote: increase grpc client default size
    kubernetes#64672: pkg: kubelet: remote: increase grpc client default size to
    
    ```release-note
    CRI: increase grpc client default size to 16MB
    ```
    Kubernetes Submit Queue committed Jun 13, 2018
    Configuration menu
    Copy the full SHA
    d9823e4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#64971 from sttts/sttts-admission-webhoo…

    …k-removal-1.10
    
    Automatic merge from submit-queue.
    
    Cherry pick of kubernetes#64255: fix field removal in mutating admission webhooks
    
    This cherry-pick was unclean because the webhook plugin was seriously refactored after 1.10
    
    Based on kubernetes#64255
    
    ```release-note
    Webhooks for the mutating admission controller now support "remove" operation.
    ```
    Kubernetes Submit Queue committed Jun 13, 2018
    Configuration menu
    Copy the full SHA
    db6dfcc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    04ba8ec View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#65029 from detiber/timeoutIncrease

    Automatic merge from submit-queue.
    
    kubeadm - increase upgrade manifest timeout
    
    **What this PR does / why we need it**:
    
    Backports the manifest upgrade timeout from kubernetes#64988 to v1.10
    
    **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 kubernetes/kubeadm#850
    
    **Release note**:
    ```release-note
    kubeadm - Increase the manifest upgrade timeout to make upgrades more reliable.
    ```
    Kubernetes Submit Queue committed Jun 13, 2018
    Configuration menu
    Copy the full SHA
    48c3adc View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#65014 from kgolab/automated-cherry-pick…

    …-of-#64503-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64503: Create system:cluster-autoscaler account & role and
    
    Cherry pick of kubernetes#64503 on release-1.10.
    
    kubernetes#64503: Create system:cluster-autoscaler account & role and
    Kubernetes Submit Queue committed Jun 13, 2018
    Configuration menu
    Copy the full SHA
    ff6ac4e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fd5ef6d View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2018

  1. Merge pull request kubernetes#65061 from immutableT/automated-cherry-…

    …pick-of-#65035-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65035 upstream release 1.10
    
    Add kms-plugin-container.sh to release.sh.
    
    ```release-note
    Due to the mismatch between quick release and bazel release need to manually update release.sh to include kms-plugin-container.manifest in release.sh. Otherwise, when KMS integration is requested kube-apiserver fails to come-up.
    ```
    REF kubernetes#65035
    Kubernetes Submit Queue committed Jun 14, 2018
    Configuration menu
    Copy the full SHA
    b092939 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#64986 from ashleyschuett/fix/kubeadmmas…

    …tertaints
    
    Automatic merge from submit-queue.
    
    Fixed taints being applied to master if NoTaintMaster is true
    
    **What this PR does / why we need it**:
    
    This PR fixes removing the master taint when `noTaintMaster` is true. It will append all current taints to the `taints` variable unless it is a master taint, and then assign `taints` back to the `node.Spec.Taints` property. 
    
    The function currently will add the master taint to the `taints` variable for as many taints as the master has. It will also remove any taints that are on the master. 
    
    
    ```release-note
    Fixed NoTaintMaster to remove master taint and keep all other applied taints. 
    ```
    Kubernetes Submit Queue committed Jun 14, 2018
    Configuration menu
    Copy the full SHA
    b44fb75 View commit details
    Browse the repository at this point in the history
  3. Wait a minimum amount of time for polling operations

    Nick Sardo committed Jun 14, 2018
    Configuration menu
    Copy the full SHA
    a1923f3 View commit details
    Browse the repository at this point in the history
  4. Use context with timeout instead of context.Background

    Nick Sardo committed Jun 14, 2018
    Configuration menu
    Copy the full SHA
    1f336dd View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2018

  1. Fix issue kubernetes#63183 that pods on different nodes mount Ceph RB…

    …D PVC stuck on ContainerCreating.
    xiaoxubeii authored and guoshaowei committed Jun 15, 2018
    Configuration menu
    Copy the full SHA
    e8c96af View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#64446 from liggitt/automated-cherry-pic…

    …k-of-#64355-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64355: bump(github.com/evanphx/json-patch):
    
    Cherry pick of kubernetes#64355 on release-1.10.
    
    kubernetes#64355: bump(github.com/evanphx/json-patch):
    Kubernetes Submit Queue committed Jun 15, 2018
    Configuration menu
    Copy the full SHA
    320c55e View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#65073 from davidz627/fix/csiClusterRoles

    Automatic merge from submit-queue.
    
    Add RBAC policy rules for csi-external-provisioner and csi-external-attacher
    
    Adds RBAC Policy rules for `csi-external-provisioner` and `csi-external-attacher` so that CSI drivers can bind to these cluster roles on every version of k8s where CSI is Beta or above.
    
    These roles were added in 1.11 but never cherrypicked back to 1.10. The roles originally added as a part of a larger change here: kubernetes#61866
    
     I could not do a direct cherry-pick because some of the RBAC primitives changed and there was also a fix applied on top with this PR:
    kubernetes#65070
    The fix has been included in this commit. 
    
    /kind enhancement
    /sig storage
    /cc @msau42 
    /assign @liggitt @MaciekPytel
    
    ```release-note
    NONE
    ```
    Kubernetes Submit Queue committed Jun 15, 2018
    Configuration menu
    Copy the full SHA
    75bf5cd View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#65028 from gnufied/automated-cherry-pic…

    …k-of-#64855-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64855: Fix setup of configmap/secret/projected/downwardapi
    
    Cherry pick of kubernetes#64855 on release-1.10.
    
    kubernetes#64855: Fix setup of configmap/secret/projected/downwardapi
    
    ```release-note
    Fix setup of configmap/secret/projected/downwardapi volumes
    ```
    Kubernetes Submit Queue committed Jun 15, 2018
    Configuration menu
    Copy the full SHA
    14eafcd View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2018

  1. apiextensions: fix concurrent map access copying items' ObjectMeta in…

    … Unstructured
    
    The list+get endpoints sets the self-link. If we do not create a (shallow)
    copy of ObjectMeta this will mutate the cached objects.
    sttts committed Jun 18, 2018
    Configuration menu
    Copy the full SHA
    62658d8 View commit details
    Browse the repository at this point in the history
  2. Disable session affinity for internal kuberntes service

    Under following conditions session affinity leads to a deadlock:
      - Self hosted controller-manager, where it talks to API servers
        via kubernetes service ClusterIP
      - default master-count reconcilier is used
      - --apiserver-count is set to >1 according to the help message
      - number of responsive APIServers goes below `apiserver-count`
      - all controller-managers happen to be hashed to APIServers which
        are down.
    
    What then happens is that controller managers never be able to
    contact APIServer, despite correctly working APIServer available.
    
    Less serious outages also possible for other consumers of kubernetes
    service, such as operators, kube-dns, flannel & calico, etc.  There is
    always non zero chance, that given consumer is hashed  to an apiserver
    which is down.
    
    Revert "give the kubernetes service client ip session affinity"
    This reverts commit e21ebbc.
    redbaron authored and afritzler committed Jun 18, 2018
    Configuration menu
    Copy the full SHA
    6e7f53e View commit details
    Browse the repository at this point in the history
  3. use the latest json-iter

    Chao Xu committed Jun 18, 2018
    Configuration menu
    Copy the full SHA
    0bf82f2 View commit details
    Browse the repository at this point in the history
  4. make json serializer case sensitive

    Chao Xu committed Jun 18, 2018
    Configuration menu
    Copy the full SHA
    a78ef37 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#65119 from nicksardo/automated-cherry-p…

    …ick-of-#64630-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64630: Wait a minimum amount of time for polling operations
    
    Cherry pick of kubernetes#64630 on release-1.10.
    
    kubernetes#64630: Wait a minimum amount of time for polling operations
    Kubernetes Submit Queue committed Jun 18, 2018
    Configuration menu
    Copy the full SHA
    a21d351 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2018

  1. Merge pull request kubernetes#65157 from caesarxuchao/cherrypick-6503…

    …4-1.10
    
    Automatic merge from submit-queue.
    
    Manually cherrypick kubernetes#65034 to 1.10
    
    Manually cherrypicking kubernetes#65034. Using hack/cherry_pick_pull.sh to cherrypick is difficult because that requires cherrypicking kubernetes#63059 first.
    
    This PR imported the latest jsoniterator library so that case sensitivity during unmarhsaling is optional. The PR also set Kubernetes json serializer to be case sensitive.
    
    Fix kubernetes#64612.
    
    ```release-notes
    Kubernetes json deserializer is now case-sensitive to restore compatibility with pre-1.8 servers.
    If your config files contains fields with wrong case, the config files will be now invalid.
    ```
    Kubernetes Submit Queue committed Jun 19, 2018
    Configuration menu
    Copy the full SHA
    32ac1c9 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2018

  1. Configuration menu
    Copy the full SHA
    605aec4 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2018

  1. Configuration menu
    Copy the full SHA
    6d637ae View commit details
    Browse the repository at this point in the history
  2. Add/Update CHANGELOG-1.10.md for v1.10.5.

    Anago GCB committed Jun 21, 2018
    Configuration menu
    Copy the full SHA
    5208e80 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1fa2d3d View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2018

  1. Merge pull request kubernetes#65177 from afritzler/backport_session_a…

    …ntiaffinity_for_1_10
    
    Automatic merge from submit-queue.
    
    [backport] Disable session affinity for internal kubernetes service
    
    Under following conditions session affinity leads to a deadlock:
      - Self hosted controller-manager, where it talks to API servers
        via kubernetes service ClusterIP
      - default master-count reconcilier is used
      - --apiserver-count is set to >1 according to the help message
      - number of responsive APIServers goes below `apiserver-count`
      - all controller-managers happen to be hashed to APIServers which
        are down.
    
    What then happens is that controller managers never be able to
    contact APIServer, despite correctly working APIServer available.
    
    Less serious outages also possible for other consumers of kubernetes
    service, such as operators, kube-dns, flannel & calico, etc.  There is
    always non zero chance, that given consumer is hashed  to an apiserver
    which is down.
    
    Revert "give the kubernetes service client ip session affinity"
    This reverts commit e21ebbc.
    
    **What this PR does / why we need it**:
    Backporting kubernetes#56690 to 1.10 release branch.
    
    **Which issue(s) this PR fixes** 
    Fixes kubernetes#23129
    
    **Release note**:
    ```release-note
    Disable session affinity for internal kubernetes service - Backport of kubernetes#56690 to 1.10 release branch
    ```
    Kubernetes Submit Queue committed Jun 22, 2018
    Configuration menu
    Copy the full SHA
    d416d1c View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65276 from louyihua/automated-cherry-pi…

    …ck-of-#64588-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64588: Fix some log issues in flexvolume
    
    Cherry pick of kubernetes#64588 on release-1.10.
    
    kubernetes#64588: Fix some log issues in flexvolume
    Kubernetes Submit Queue committed Jun 22, 2018
    Configuration menu
    Copy the full SHA
    d2b954e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f6a7491 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2018

  1. Configuration menu
    Copy the full SHA
    c9362fe View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65363 from liggitt/automated-cherry-pic…

    …k-of-#65339-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65339: Remove item from taint manager workqueue on completion
    
    Cherry pick of kubernetes#65339 on release-1.10.
    
    kubernetes#65339: Remove item from taint manager workqueue on completion
    Kubernetes Submit Queue committed Jun 25, 2018
    Configuration menu
    Copy the full SHA
    c97937e View commit details
    Browse the repository at this point in the history
  3. Fix scheduler config decoding

    liggitt committed Jun 25, 2018
    Configuration menu
    Copy the full SHA
    732506e View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#65432 from kawych/automated-cherry-pick…

    …-of-#65176-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65176: Pass cluster_location argument to Heapster
    
    Cherry pick of kubernetes#65176 on release-1.10.
    
    kubernetes#65176: Pass cluster_location argument to Heapster
    Kubernetes Submit Queue committed Jun 25, 2018
    Configuration menu
    Copy the full SHA
    3178fd6 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#65328 from dashpole/update_cadvisor_v0.…

    …29.2
    
    Automatic merge from submit-queue.
    
    Update cadvisor godeps to v0.29.2
    
    **What this PR does / why we need it**:
    This updates the cAdvisor godeps from v0.29.1 to v0.29.2 to incorporate a number of important bug-fixes.
    
    **Release note**:
    ```release-note
    Fix concurrent map access panic
    Don't watch .mount cgroups to reduce number of inotify watches
    Fix NVML initialization race condition
    Fix brtfs disk metrics when using a subdirectory of a subvolume
    ```
    /assign @dchen1107
    for lgtm
    /assign @MaciekPytel
    for milestone, milestone approval, and cherrypick-approval
    Kubernetes Submit Queue committed Jun 25, 2018
    Configuration menu
    Copy the full SHA
    dac7a52 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2018

  1. Merge pull request kubernetes#65417 from liggitt/automated-cherry-pic…

    …k-of-#65415-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65424: Fix scheduler config decoding
    
    Cherry pick of kubernetes#65424 on release-1.10.
    
    kubernetes#65424: Fix scheduler config decoding
    Kubernetes Submit Queue committed Jun 26, 2018
    Configuration menu
    Copy the full SHA
    1a1c0ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0dc1682 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2018

  1. etcd: reuse leases for keys in a time window

    Reuse leases for keys in a time window, to reduce the overhead to etcd
    caused by using massive number of leases
    
    Fixes kubernetes#47532
    ckt authored and wenjiaswe committed Jun 27, 2018
    Configuration menu
    Copy the full SHA
    f85b7ae View commit details
    Browse the repository at this point in the history
  2. Fix UnmountDevice with deleted pod.

    When a pod is deleted, kubelet can't read VolumeAttachment objects. It
    should cache all information in a json file.
    jsafrane committed Jun 27, 2018
    Configuration menu
    Copy the full SHA
    a7e3d60 View commit details
    Browse the repository at this point in the history
  3. Fix cleanup of volume metadata json file.

    Create the json file with metadata as the last item, when everything
    else is ready, so we don't need to clean up the file in all error cases
    in this function.
    jsafrane committed Jun 27, 2018
    Configuration menu
    Copy the full SHA
    d0e4db5 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2018

  1. Configuration menu
    Copy the full SHA
    10ac0cc View commit details
    Browse the repository at this point in the history
  2. BUGFIX: must use ID, not name, of the node security group when adding…

    … rules to it
    multi-io authored and dims committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    7a8ee6b View commit details
    Browse the repository at this point in the history
  3. In case storage class parameters are empty, create a new map for Port…

    …worx volume labels
    
    Fixes kubernetes#64894
    
    Signed-off-by: Harsh Desai <harsh@portworx.com>
    Harsh Desai committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    22580c5 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2018

  1. Configuration menu
    Copy the full SHA
    2eb775e View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65504 from dashpole/automated-cherry-pi…

    …ck-of-#65342-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65342: update NPD version to v0.5.0 for gci
    
    Cherry pick of kubernetes#65342 on release-1.10.
    
    kubernetes#65342: update NPD version to v0.5.0 for gci
    Kubernetes Submit Queue committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    a66be7c View commit details
    Browse the repository at this point in the history
  3. Fix comments about default mount propagation

    Fix generated docs as well
    gnufied committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    7389d3c View commit details
    Browse the repository at this point in the history
  4. Remove optimization from getWork in resourcequota/controller.go

    This change simplifies the code in
    plugin/pkg/admission/resourcequota/controller.go by removing the
    optimization in getWork that required the caller to NOT call
    completeWork if getWork returns the empty list of work.  BTW, the
    caller was not obeying that requirement; now the caller's behavior
    (which is unchanged) is right.
    
    Fixes kubernetes#63608
    MikeSpreitzer committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    45de889 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    96bbbdd View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2018

  1. skip nic that are in failing state

    yastij authored and feiskyer committed Jul 2, 2018
    Configuration menu
    Copy the full SHA
    b481ace View commit details
    Browse the repository at this point in the history
  2. add external resource group support for azure disk

    fix naming issue
    
    fix comments
    andyzhangx committed Jul 2, 2018
    Configuration menu
    Copy the full SHA
    6c04d8a View commit details
    Browse the repository at this point in the history
  3. fix comments

    andyzhangx committed Jul 2, 2018
    Configuration menu
    Copy the full SHA
    d3ff9f9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7c1de61 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cad0469 View commit details
    Browse the repository at this point in the history
  6. when copy file from host to pod like this: 1.kubectl copy /tmp/test-f…

    …ile test-pod:/ 2.kubectl copy /tmp/test-file test-pod: example 1 will fail, example 2 will cause a panic. This patch fix bugs above.
    WanLinghao authored and soltysh committed Jul 2, 2018
    Configuration menu
    Copy the full SHA
    64ac8f3 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2018

  1. Configuration menu
    Copy the full SHA
    db1417f View commit details
    Browse the repository at this point in the history
  2. Reload systemd config files before starting kubelet.

    In some environments, the os image comes with preloaded kubelet.service,
    so we need to reload systemctl configs to make changes effective.
    mborsz committed Jul 3, 2018
    Configuration menu
    Copy the full SHA
    fb121ff View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#65559 from jiayingz/automated-cherry-pi…

    …ck-of-#65289-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65289: Add a GPUClusterDowngrade test.
    
    Cherry pick of kubernetes#65289 on release-1.10.
    
    kubernetes#65289: Add a GPUClusterDowngrade test.
    Kubernetes Submit Queue committed Jul 3, 2018
    Configuration menu
    Copy the full SHA
    3533970 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2018

  1. Merge pull request kubernetes#65654 from grayluck/automated-cherry-pi…

    …ck-of-#65548-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65548: Bug fix: Should allow alias range size equals to max number
    
    Cherry pick of kubernetes#65548 on release-1.10.
    
    kubernetes#65548: Bug fix: Should allow alias range size equals to max number
    Kubernetes Submit Queue committed Jul 4, 2018
    Configuration menu
    Copy the full SHA
    37d1bb9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65681 from feiskyer/automated-cherry-pi…

    …ck-of-#65412-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65412: skip nic that are in failing state
    
    Cherry pick of kubernetes#65412 on release-1.10.
    
    kubernetes#65412: skip nic that are in failing state
    Kubernetes Submit Queue committed Jul 4, 2018
    Configuration menu
    Copy the full SHA
    9e5916b View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#65687 from andyzhangx/automated-cherry-…

    …pick-of-#64427-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64427: add external resource group support for azure disk
    
    Cherry pick of kubernetes#64427 on release-1.10.
    
    kubernetes#64427: add external resource group support for azure disk
    Kubernetes Submit Queue committed Jul 4, 2018
    Configuration menu
    Copy the full SHA
    6a6fa9e View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#65590 from harsh-px/automated-cherry-pi…

    …ck-of-#64895-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64895: In case storage class parameters are empty, create a new map
    
    Cherry pick of kubernetes#64895 on release-1.10.
    
    kubernetes#64895: In case storage class parameters are empty, create a new map
    Kubernetes Submit Queue committed Jul 4, 2018
    Configuration menu
    Copy the full SHA
    8b28a02 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    46981ed View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#65748 from mborsz/automated-cherry-pick…

    …-of-#65702-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65702: Reload systemd config files before starting kubelet.
    
    Cherry pick of kubernetes#65702 on release-1.10.
    
    kubernetes#65702: Reload systemd config files before starting kubelet.
    Kubernetes Submit Queue committed Jul 4, 2018
    Configuration menu
    Copy the full SHA
    f959dfb View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#65564 from dims/automated-cherry-pick-o…

    …f-#65373-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65373: BUGFIX: must use ID, not name, of the node security group
    
    Cherry pick of kubernetes#65373 on release-1.10.
    
    kubernetes#65373: BUGFIX: must use ID, not name, of the node security group
    Kubernetes Submit Queue committed Jul 4, 2018
    Configuration menu
    Copy the full SHA
    6220d71 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2018

  1. Merge pull request kubernetes#65169 from sttts/automated-cherry-pick-…

    …of-#65092-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65092: apiextensions: fix concurrent map access copying items'
    
    Cherry pick of kubernetes#65092 on release-1.10.
    
    kubernetes#65092: apiextensions: fix concurrent map access copying items'
    Kubernetes Submit Queue committed Jul 5, 2018
    Configuration menu
    Copy the full SHA
    c2060cd View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65510 from wenjiaswe/automated-cherry-p…

    …ick-of-#64539-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64539: etcd: reuse leases for keys in a time window
    
    Cherry pick of kubernetes#64539 on release-1.10.
    
    kubernetes#64539: etcd: reuse leases for keys in a time window
    
    This is it an important bug fix for scalability.
    
    cc @jpbetz
    Kubernetes Submit Queue committed Jul 5, 2018
    Configuration menu
    Copy the full SHA
    d46c3ac View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2018

  1. Merge pull request kubernetes#65806 from andyzhangx/automated-cherry-…

    …pick-of-#65751-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65751: fix smb mount security issue
    
    Cherry pick of kubernetes#65751 on release-1.10.
    
    kubernetes#65751: fix smb mount security issue
    Kubernetes Submit Queue committed Jul 6, 2018
    Configuration menu
    Copy the full SHA
    68bea2f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    09f36f9 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2018

  1. Fix RunAsGroup.

    Random-Liu committed Jul 7, 2018
    Configuration menu
    Copy the full SHA
    6b8b884 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2018

  1. Configuration menu
    Copy the full SHA
    9b452ae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5f543e View commit details
    Browse the repository at this point in the history
  3. Update Calico addon yamls to make it work for both 2.x and 3.x. versi…

    …ons.
    
    Co-authored-by: Casey Davenport <casey@tigera.io>
    jingax10 and caseydavenport committed Jul 9, 2018
    Configuration menu
    Copy the full SHA
    1de0d2b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e35fd74 View commit details
    Browse the repository at this point in the history
  5. Add a helper function to customize K8s addon yamls and use it to cust…

    …omize Calico addons on GKE.
    jingax10 committed Jul 9, 2018
    Configuration menu
    Copy the full SHA
    d0b2238 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    54c4271 View commit details
    Browse the repository at this point in the history
  7. Fix pod worker deadlock.

    Signed-off-by: Lantao Liu <lantaol@google.com>
    Random-Liu committed Jul 9, 2018
    Configuration menu
    Copy the full SHA
    9ca4227 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2018

  1. Merge pull request kubernetes#65916 from xmudrii/release-1.10-ignored…

    …-res
    
    Automatic merge from submit-queue.
    
    [1.10] gc: remove crd and apiservice from ignored resources
    
    Fixes kubernetes#65818
    
    This PR cherry-picks CRD and APIService removal from GC ignored resources, from kubernetes#65856 and kubernetes#65915.
    
    **Release note**:
    ```release-note
    The garbage collector now supports CustomResourceDefinitions and APIServices.
    ```
    
    /cc @nikhita @liggitt 
    /sig api-machinery
    /kind bug
    /priority important-soon
    Kubernetes Submit Queue committed Jul 10, 2018
    Configuration menu
    Copy the full SHA
    f7ef7a2 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2018

  1. Removes defaulting of CSI fsType to ext4

    Fixing comments in types.go
    krunaljain committed Jul 11, 2018
    Configuration menu
    Copy the full SHA
    0331545 View commit details
    Browse the repository at this point in the history
  2. Adding generated files

    Adding generated files
    krunaljain committed Jul 11, 2018
    Configuration menu
    Copy the full SHA
    570c9e6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#65605 from feiskyer/automated-cherry-pi…

    …ck-of-#63270-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63270: remove format operation in WaitForAttach
    
    Cherry pick of kubernetes#63270 on release-1.10.
    
    kubernetes#63270: remove format operation in WaitForAttach
    Kubernetes Submit Queue committed Jul 11, 2018
    Configuration menu
    Copy the full SHA
    4c7141c View commit details
    Browse the repository at this point in the history
  4. Fix NPD preload.

    Random-Liu committed Jul 11, 2018
    Configuration menu
    Copy the full SHA
    5a9f466 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2018

  1. Merge pull request kubernetes#66005 from Random-Liu/automated-cherry-…

    …pick-of-#65987-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65987: Fix pod worker deadlock.
    
    Cherry pick of kubernetes#65987 on release-1.10.
    
    kubernetes#65987: Fix pod worker deadlock.
    Kubernetes Submit Queue committed Jul 12, 2018
    Configuration menu
    Copy the full SHA
    95eea8a View commit details
    Browse the repository at this point in the history
  2. Make kubelet ReadLogs backward compatible.

    Signed-off-by: Lantao Liu <lantaol@google.com>
    Random-Liu authored and feiskyer committed Jul 12, 2018
    Configuration menu
    Copy the full SHA
    d0d75ce View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#65934 from Random-Liu/automated-cherry-…

    …pick-of-#65926-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65926: Fix RunAsGroup.
    
    Cherry pick of kubernetes#65926 on release-1.10.
    
    kubernetes#65926: Fix RunAsGroup.
    Kubernetes Submit Queue committed Jul 12, 2018
    Configuration menu
    Copy the full SHA
    6954fae View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2018

  1. Merge pull request kubernetes#64931 from dghubble/automated-cherry-pi…

    …ck-of-#61613-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Ensure /etc/hosts has a header always - Fix conformance test
    
    We have 2 scenarios where we copy /etc/hosts
    - with host network (we just copy the /etc/hosts from node)
    - without host network (create a fresh /etc/hosts from pod info)
    
    We are having trouble figuring out whether a /etc/hosts in a
    pod/container has been "fixed-up" or not. And whether we used
    host network or a fresh /etc/hosts in the various ways we start
    up the tests which are:
    
    - VM/box against a remote cluster
    - As a container inside the k8s cluster
    - DIND scenario in CI where test runs inside a managed container
    
    Please see previous mis-guided attempt to fix this problem at
    ba20e63 In this commit we revert
    the code from there as well.
    
    So we should make sure:
    - we always add a header if we touched the file
    - we add slightly different headers so we can figure out if we used the
      host network or not.
    
    Update the test case to inject /etc/hosts from node to another path
    (/etc/hosts-original) as well and use that to compare.
    
    
    
    **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 #
    
    **Special notes for your reviewer**:
    
    **Release note**:
    
    ```release-note
    Rework Kubelet set `/etc/hosts` behavior to fix conformance testability
    ```
    Kubernetes Submit Queue committed Jul 13, 2018
    Configuration menu
    Copy the full SHA
    93a2e8a View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#66035 from krunaljain/automated-cherry-…

    …pick-of-#65499-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65499: Removes defaulting of CSI fsType to ext4
    
    Cherry pick of kubernetes#65499 on release-1.10.
    
    kubernetes#65499: Removes defaulting of CSI fsType to ext4
    Kubernetes Submit Queue committed Jul 13, 2018
    Configuration menu
    Copy the full SHA
    0862ebd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    59192c0 View commit details
    Browse the repository at this point in the history
  4. Remove patch retry conflict detection

    Minimal backport of kubernetes#63146
    
    Fixes spurious patch errors for CRDs
    Fixes patch errors for nodes when the watch cache has a persistently stale version of an object
    liggitt committed Jul 13, 2018
    Configuration menu
    Copy the full SHA
    d8cac18 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#65957 from andyzhangx/automated-cherry-…

    …pick-of-#64957-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64957: set EnableHTTPSTrafficOnly in storageAccount creation
    
    Cherry pick of kubernetes#64957 on release-1.10.
    
    kubernetes#64957: set EnableHTTPSTrafficOnly in storageAccount creation
    Kubernetes Submit Queue committed Jul 13, 2018
    Configuration menu
    Copy the full SHA
    dd82356 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#66089 from Random-Liu/automated-cherry-…

    …pick-of-#62743-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#62743: Fix NPD preload.
    
    Cherry pick of kubernetes#62743 on release-1.10.
    
    kubernetes#62743: Fix NPD preload.
    
    We need to cherry-pick this because node startup time on GCE slows down for 10 seconds without this. /cc @MaciekPytel 
    
    @yujuhong @mwielgus
    Kubernetes Submit Queue committed Jul 13, 2018
    Configuration menu
    Copy the full SHA
    f7f48f2 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2018

  1. Merge pull request kubernetes#66096 from feiskyer/automated-cherry-pi…

    …ck-of-#63268-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63268: Make kubelet `ReadLogs` backward compatible.
    
    Cherry pick of kubernetes#63268 on release-1.10.
    
    kubernetes#63268: Make kubelet `ReadLogs` backward compatible.
    
    ```release-note
    Make kubelet ReadLogs backward compatible.
    ```
    Kubernetes Submit Queue committed Jul 14, 2018
    Configuration menu
    Copy the full SHA
    c838d0a View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65999 from jingax10/release-1.10

    Automatic merge from submit-queue.
    
    Backport Calico related fixes to release 1.10
    
    **What this PR does / why we need it**:
    We need to run Calico 3.0+ on GCP and we need to customize MTU when Calico CNI is used on GCP.
    
    **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 kubernetes#65045 kubernetes#65067
    
    **Special notes for your reviewer**:
    
    **Release note**:
    
    ```release-note
    "NONE"
    ```
    Kubernetes Submit Queue committed Jul 14, 2018
    Configuration menu
    Copy the full SHA
    9c2c0d2 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#65640 from MikeSpreitzer/automated-cher…

    …ry-pick-of-#64598-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64598: Remove optimization from getWork in
    
    Cherry pick of kubernetes#64598 on release-1.10.
    
    kubernetes#64598: Remove optimization from getWork in
    Kubernetes Submit Queue committed Jul 14, 2018
    Configuration menu
    Copy the full SHA
    69ed60f View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2018

  1. Don't validate HealthzBindAddress in KubeProxyConfiguration if it's e…

    …mpty
    Wayne Song committed Jul 16, 2018
    Configuration menu
    Copy the full SHA
    692530c View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2018

  1. Configuration menu
    Copy the full SHA
    a140af1 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2018

  1. Merge pull request kubernetes#66167 from liggitt/automated-cherry-pic…

    …k-of-#66165-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66165: Compare stateful set updates semantically
    
    Cherry pick of kubernetes#66165 on release-1.10.
    
    kubernetes#66165: Compare stateful set updates semantically
    
    ```release-note
    fixes a validation error that could prevent updates to StatefulSet objects containing non-normalized resource requests
    ```
    Kubernetes Submit Queue committed Jul 18, 2018
    Configuration menu
    Copy the full SHA
    986ed67 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65970 from loburm/automated-cherry-pick…

    …-of-#65823-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65823: Fix truncating and buffering backends integration.
    
    Cherry pick of kubernetes#65823 on release-1.10.
    
    kubernetes#65823: Fix truncating and buffering backends integration.
    Kubernetes Submit Queue committed Jul 18, 2018
    Configuration menu
    Copy the full SHA
    0016ac3 View commit details
    Browse the repository at this point in the history
  3. Reverting commit kubernetes#56600 as GCE PD is allocated in chunks of…

    … GiB instead of GBs
    
    Fixing comments and importing constant from util
    
    Importing constant from util
    
    Fixing comment in volume_provisioning.go
    krunaljain committed Jul 18, 2018
    Configuration menu
    Copy the full SHA
    3448701 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2018

  1. Configuration menu
    Copy the full SHA
    8c76a64 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65529 from jsafrane/automated-cherry-pi…

    …ck-of-#64882-kubernetes#65323-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64882: Fix UnmountDevice with deleted pod. kubernetes#65323: Fix cleanup of volume metadata json file.
    
    Cherry pick of kubernetes#64882 kubernetes#65323 on release-1.10.
    
    kubernetes#64882: Fix UnmountDevice with deleted pod.
    kubernetes#65323: Fix cleanup of volume metadata json file.
    
    ```release-note
    Fixed cleanup of CSI metadata files.
    ```
    Kubernetes Submit Queue committed Jul 19, 2018
    Configuration menu
    Copy the full SHA
    4910952 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2018

  1. Configuration menu
    Copy the full SHA
    fc62900 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65124 from wilhelmguo/automated-cherry-…

    …pick-of-#63424-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63424: Fix issue kubernetes#63183 that pods on different nodes mount Ceph RBD
    
    Cherry pick of kubernetes#63424 on release-1.10.
    
    kubernetes#63424: Fix issue kubernetes#63183 that pods on different nodes mount Ceph RBD
    
    ```release-note
    kubernetes#63424: Fix issue kubernetes#63183 that pods on different nodes mount Ceph RBD
    ```
    Kubernetes Submit Queue committed Jul 20, 2018
    Configuration menu
    Copy the full SHA
    11dd73f View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#66317 from vmware/automated-cherry-pick…

    …-of-#66261-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66261 to upstream release-1.10
    
    Cherry pick of kubernetes#66261 on release-1.10
    kubernetes#66261: Fix locating resourcepool-path specified in the vsphere.conf file
    
    Release note:
    
    ```
    Fix locating resourcepool-path specified in the vsphere.conf file
    ```
    
    
    cc: @kubernetes/vmware
    Kubernetes Submit Queue committed Jul 20, 2018
    Configuration menu
    Copy the full SHA
    cd6a03f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f99d50e View commit details
    Browse the repository at this point in the history
  5. extend timeout to workaround slow arm64 math

    The math/big functions are slow on arm64. There is improvement coming
    with go1.11 but in the mean time if a server uses rsa certificates on
    arm64, the math load for the multitude of watches over taxes the ability
    of the processor and the TLS connections time out. Retries will also not
    succeed and serve to exacerbate the problem.
    
    By extending the timeout, the TLS connections will eventually be
    successful and the load will drop.
    
    Fixes kubernetes#64649
    joejulian committed Jul 20, 2018
    Configuration menu
    Copy the full SHA
    05876fa View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#64900 from andyzhangx/automated-cherry-…

    …pick-of-#63272-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63272: fix IsLikelyNotMountPoint func on Windows
    
    Cherry pick of kubernetes#63272 on release-1.10.
    
    kubernetes#63272: fix IsLikelyNotMountPoint func on Windows
    Kubernetes Submit Queue committed Jul 20, 2018
    Configuration menu
    Copy the full SHA
    bffb7ef View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2018

  1. Merge pull request kubernetes#66355 from krunaljain/automated-cherry-…

    …pick-of-#66172-kubernetes#66324-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66172: Reverting commit kubernetes#56600 as GCE PD is allocated in chunks of kubernetes#66324: Fixing E2E tests for disk resizing
    
    Cherry pick of kubernetes#66172 kubernetes#66324 on release-1.10.
    
    kubernetes#66172: Reverting commit kubernetes#56600 as GCE PD is allocated in chunks of
    kubernetes#66324: Fixing E2E tests for disk resizing
    
    ```release-note 
    none 
    ```
    Kubernetes Submit Queue committed Jul 21, 2018
    Configuration menu
    Copy the full SHA
    9beecb9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#66169 from liggitt/patch-retry-1.10

    Automatic merge from submit-queue.
    
    Remove patch retry conflict detection
    
    Minimal backport of kubernetes#63146
    Fixes kubernetes#58002
    
    Fixes spurious patch errors for CRDs
    Fixes patch errors for nodes when the watch cache has a persistently stale version of an object
    
    ```release-note
    fixes spurious "meaningful conflict" error encountered by nodes attempting to update status, which could cause them to be considered unready
    ```
    Kubernetes Submit Queue committed Jul 21, 2018
    Configuration menu
    Copy the full SHA
    631b766 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#66455 from nicksardo/automated-cherry-p…

    …ick-of-#66400-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66400: Return correct error type and HTTP Status code for operation
    
    Cherry pick of kubernetes#66400 on release-1.10.
    
    kubernetes#66400: Return correct error type and HTTP Status code for operation
    Kubernetes Submit Queue committed Jul 21, 2018
    Configuration menu
    Copy the full SHA
    1de34f0 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2018

  1. Configuration menu
    Copy the full SHA
    6f81009 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#66539 from mikedanese/automated-cherry-…

    …pick-of-#64172-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64172 release 1.10
    
    Automated cherry pick of kubernetes#64172 release 1.10
    
    ```release-note
    Reorder the authorizers in GCP to reduce traffic on the authorization webhook.
    ```
    Kubernetes Submit Queue committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    3ea683c View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2018

  1. Merge pull request kubernetes#66459 from joejulian/automated-cherry-p…

    …ick-of-#66264-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66264: extend timeout to workaround slow arm64 math
    
    Cherry pick of kubernetes#66264 on release-1.10.
    
    kubernetes#66264: extend timeout to workaround slow arm64 math
    Kubernetes Submit Queue committed Jul 25, 2018
    Configuration menu
    Copy the full SHA
    a21fdbd View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2018

  1. fix acr sp access issue

    andyzhangx committed Jul 26, 2018
    Configuration menu
    Copy the full SHA
    3368e7f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    75e0f58 View commit details
    Browse the repository at this point in the history
  3. Add/Update CHANGELOG-1.10.md for v1.10.6.

    Anago GCB committed Jul 26, 2018
    Configuration menu
    Copy the full SHA
    926eb5b View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2018

  1. Merge pull request kubernetes#64859 from dims/automated-cherry-pick-o…

    …f-#61146-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#61146: Add missing binaryData field to the ConfigMap Hash
    
    Cherry pick of kubernetes#61146 on release-1.10.
    
    kubernetes#61146: Add missing binaryData field to the ConfigMap Hash
    
    ```release-note
    The value of of BinaryData is now used in calculating the hash for the configmap
    ```
    Kubernetes Submit Queue committed Jul 27, 2018
    Configuration menu
    Copy the full SHA
    7b222aa View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2018

  1. Bump to k8s.gcr.io/metadata-proxy:v0.1.10

    Signed-off-by: Jake Sanders <jsand@google.com>
    Jake Sanders committed Jul 28, 2018
    Configuration menu
    Copy the full SHA
    545e96f View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2018

  1. Merge pull request kubernetes#66444 from redbaron/automated-cherry-pi…

    …ck-of-#66007-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66007: Return vmUUID when renewing nodeinfo in VCP
    
    Cherry pick of kubernetes#66007 on release-1.10.
    
    kubernetes#66007: Return vmUUID when renewing nodeinfo in VCP
    Kubernetes Submit Queue committed Jul 30, 2018
    Configuration menu
    Copy the full SHA
    bfa3c54 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#66644 from andyzhangx/automated-cherry-…

    …pick-of-#66429-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66429: fix acr sp access issue
    
    Cherry pick of kubernetes#66429 on release-1.10.
    
    kubernetes#66429: fix acr sp access issue
    Kubernetes Submit Queue committed Jul 30, 2018
    Configuration menu
    Copy the full SHA
    08ba9db View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2018

  1. Merge pull request kubernetes#66730 from dekkagaijin/automated-cherry…

    …-pick-of-#66630-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66630: Bump to k8s.gcr.io/metadata-proxy:v0.1.10
    
    Cherry pick of kubernetes#66630 on release-1.10.
    
    kubernetes#66630: Bump to k8s.gcr.io/metadata-proxy:v0.1.10
    Kubernetes Submit Queue committed Jul 31, 2018
    Configuration menu
    Copy the full SHA
    82a4943 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2018

  1. Merge pull request kubernetes#63737 from micahhausler/automated-cherr…

    …y-pick-of-#63170-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63170: Report node DNS info with --node-ip
    
    Cherry pick of kubernetes#63170 on release-1.10.
    
    kubernetes#63170: Report node DNS info with --node-ip
    Kubernetes Submit Queue committed Aug 1, 2018
    Configuration menu
    Copy the full SHA
    6287149 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2018

  1. Configuration menu
    Copy the full SHA
    adacbf1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0c0d849 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#66879 from msau42/automated-cherry-pick…

    …-of-#66832-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66832: Detect if GCE PD udev link is wrong and try to correct it
    
    Cherry pick of kubernetes#66832 on release-1.10.
    
    kubernetes#66832: Detect if GCE PD udev link is wrong and try to correct it
    Kubernetes Submit Queue committed Aug 2, 2018
    Configuration menu
    Copy the full SHA
    31726bc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    27c6d4e View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2018

  1. Merge pull request kubernetes#66934 from rramkumar1/automated-cherry-…

    …pick-of-#64159-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64159: Stub out BackendService check in Ingress upgrade test.
    
    Cherry pick of kubernetes#64159 on release-1.10.
    
    kubernetes#64159: Stub out BackendService check in Ingress upgrade test.
    
    Fixes kubernetes#66544
    Kubernetes Submit Queue committed Aug 3, 2018
    Configuration menu
    Copy the full SHA
    bfc3acc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    27c0d93 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2018

  1. Merge pull request kubernetes#66881 from jiayingz/automated-cherry-pi…

    …ck-of-#64784-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64784: Reconcile extended resource capacity after kubelet restart.
    
    Cherry pick of kubernetes#64784 on release-1.10.
    
    kubernetes#64784: Reconcile extended resource capacity after kubelet restart.
    Kubernetes Submit Queue committed Aug 6, 2018
    Configuration menu
    Copy the full SHA
    278235b View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#66977 from msau42/automated-cherry-pick…

    …-of-#66925-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66925: Rework multi-volume test to use StatefulSet
    
    Cherry pick of kubernetes#66925 on release-1.10.
    
    kubernetes#66925: Rework multi-volume test to use StatefulSet
    Kubernetes Submit Queue committed Aug 6, 2018
    Configuration menu
    Copy the full SHA
    e98e71a View commit details
    Browse the repository at this point in the history
  3. A large set of improvements to the Stackdriver components.

    Metadata Agent Improvements
    Bump metadata agent version to 0.2-0.0.21-1.
    Expand the metadata agent's access to all API groups.
    Remove metadata agent config maps in favor of command line flags.
    Update the metadata agent's liveness probe to a new /healthz handler.
    
    Logging Agent Improvements
    Bump logging agent version to 0.2-1.5.33-1-k8s-1.
    Appropriately set log severity for k8s_container.
    Fix detect exceptions plugin to analyze message field instead of log field.
    Fix detect exceptions plugin to analyze streams based on local resource id.
    Disable the metadata agent for monitored resource construction in logging.
    Disable timestamp adjustment in logs to optimize performance.
    Reduce logging agent buffer chunk limit to 512k to optimize performance.
    bmoyles0117 committed Aug 6, 2018
    Configuration menu
    Copy the full SHA
    f974f0a View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2018

  1. Add NoSchedule and NoExecute tolerations to ip-masq-agent

    tanshanshan authored and grayluck committed Aug 8, 2018
    Configuration menu
    Copy the full SHA
    9d2ecc8 View commit details
    Browse the repository at this point in the history
  2. Include unavailable API services in discovery response

    Nail Islamov authored and liggitt committed Aug 8, 2018
    Configuration menu
    Copy the full SHA
    411fba1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#67025 from bmoyles0117/automated-cherry…

    …-pick-of-#66485-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66485: A large set of improvements to the Stackdriver components.
    
    Cherry pick of kubernetes#66485 on release-1.10.
    
    kubernetes#66485: A large set of improvements to the Stackdriver components.
    Kubernetes Submit Queue committed Aug 8, 2018
    Configuration menu
    Copy the full SHA
    8619d22 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2018

  1. Configuration menu
    Copy the full SHA
    207c8e5 View commit details
    Browse the repository at this point in the history
  2. Support pulling requestheader CA from extension-apiserver-authenticat…

    …ion ConfigMap without client CA
    
    This commit prevents extension API server from erroring out during bootstrap when the core
    API server doesn't support certificate based authentication for it's clients i.e. client-ca isn't
    present in extension-apiserver-authentication ConfigMap in kube-system.
    
    This can happen in cluster setups where core API server uses Webhook token authentication.
    
    Fixes: kubernetes#65724
    rtripat authored and liggitt committed Aug 10, 2018
    Configuration menu
    Copy the full SHA
    50448eb View commit details
    Browse the repository at this point in the history
  3. Escape illegal characters in remote extra keys

    Signed-off-by: Jake Sanders <jsand@google.com>
    Jake Sanders committed Aug 10, 2018
    Configuration menu
    Copy the full SHA
    3d5d7ef View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2018

  1. Merge pull request kubernetes#67151 from grayluck/automated-cherry-pi…

    …ck-of-#66260-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66260: Add NoSchedule and NoExecute tolerations to ip-masq-agent
    
    Cherry pick of kubernetes#66260 on release-1.10.
    
    kubernetes#66260: Add NoSchedule and NoExecute tolerations to ip-masq-agent
    Kubernetes Submit Queue committed Aug 13, 2018
    Configuration menu
    Copy the full SHA
    4b25934 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2018

  1. Configuration menu
    Copy the full SHA
    5a757b0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#67265 from verult/automated-cherry-pick…

    …-of-#67220-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#67220: Fixed vsphere volume plugin unsafe type cast; added unit
    
    Cherry pick of kubernetes#67220 on release-1.10.
    
    kubernetes#67220: Fixed vsphere volume plugin unsafe type cast; added unit
    
    ```release-note
    NONE
    ```
    /assign @saad-ali 
    /sig storage
    /sig vmware
    Kubernetes Submit Queue committed Aug 14, 2018
    Configuration menu
    Copy the full SHA
    4f681a7 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2018

  1. attachdetach controller: attach volumes immediately when Pod's PVCs a…

    …re bound - Use queue to process PVCs on add/update events - Index pods by PVC key then we don't need to iterate to find pods
    cofyc committed Aug 15, 2018
    Configuration menu
    Copy the full SHA
    f50311e View commit details
    Browse the repository at this point in the history
  2. attachdetach controller: attach volumes immediately when Pod's PVCs a…

    …re bound - Add integration test for this feature
    cofyc committed Aug 15, 2018
    Configuration menu
    Copy the full SHA
    4cf5af5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aa90843 View commit details
    Browse the repository at this point in the history
  4. Upgrade debian-base to 0.3.1 for CVEs

    satyasm authored and ixdy committed Aug 15, 2018
    Configuration menu
    Copy the full SHA
    145c714 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b04c218 View commit details
    Browse the repository at this point in the history
  6. Only register qemu-user-static when necessary.

    Also, don't re-download qemu-ARCH-static binaries for debian-iptables
    ixdy committed Aug 15, 2018
    Configuration menu
    Copy the full SHA
    991f66b View commit details
    Browse the repository at this point in the history
  7. Bump debian-base to 0.3.2

    ixdy committed Aug 15, 2018
    Configuration menu
    Copy the full SHA
    07dda2e View commit details
    Browse the repository at this point in the history
  8. Add missing tmpdir path to chmod

    ixdy committed Aug 15, 2018
    Configuration menu
    Copy the full SHA
    727c2ce View commit details
    Browse the repository at this point in the history
  9. Update to use debian-base:0.3.2

    ixdy committed Aug 15, 2018
    Configuration menu
    Copy the full SHA
    8e7ed90 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ebccf77 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2018

  1. Merge pull request kubernetes#67163 from dekkagaijin/automated-cherry…

    …-pick-of-#65799-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65799: Escape illegal characters in remote extra keys
    
    Cherry pick of kubernetes#65799 on release-1.10.
    
    kubernetes#65799: Escape illegal characters in remote extra keys
    Kubernetes Submit Queue committed Aug 16, 2018
    Configuration menu
    Copy the full SHA
    c79ade8 View commit details
    Browse the repository at this point in the history
  2. fix an issue in NodeInfo.Clone()

    - usedPorts is a map-in-map struct, add fix to ensure it's deep copied
    - updated unit test
    Huang-Wei committed Aug 16, 2018
    Configuration menu
    Copy the full SHA
    7d319c0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    67eca2b View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#67443 from chakri-nelluri/automated-che…

    …rry-pick-of-#67097-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#67097: Ignore EIO error in unmount path
    
    Cherry pick of kubernetes#67097 on release-1.10.
    
    kubernetes#67097: Ignore EIO error in unmount path
    Kubernetes Submit Queue committed Aug 16, 2018
    Configuration menu
    Copy the full SHA
    4f91268 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#67270 from liggitt/automated-cherry-pic…

    …k-of-#66394-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66394: Support pulling requestheader CA from
    
    Cherry pick of kubernetes#66394 on release-1.10.
    
    kubernetes#66394: Support pulling requestheader CA from
    Kubernetes Submit Queue committed Aug 16, 2018
    Configuration menu
    Copy the full SHA
    7509f43 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#67482 from Huang-Wei/automated-cherry-p…

    …ick-of-#67456-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#67456: fix an issue in NodeInfo.Clone()
    
    Cherry pick of kubernetes#67456 on release-1.10.
    
    kubernetes#67456: fix an issue in NodeInfo.Clone()
    Kubernetes Submit Queue committed Aug 16, 2018
    Configuration menu
    Copy the full SHA
    a36a7ec View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2018

  1. Merge pull request kubernetes#67462 from ixdy/automated-cherry-pick-o…

    …f-#67026-kubernetes#67222-kubernetes#67283-kubernetes#67365-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    release-1.10: update to debian-base 0.3.2, debian-iptables v10.1 and hyperkubebase 0.10.1
    
    Cherry pick of kubernetes#67026 kubernetes#67222 kubernetes#67283 kubernetes#67365 on release-1.10.
    
    kubernetes#67026: Upgrade debian-base to 0.3.1 for CVEs
    kubernetes#67222: ensure qemu-ARCH-static binary is world readable and
    kubernetes#67283: Add missing tmpdir path to chmod
    kubernetes#67365: Update to debian-iptables v10.1 and hyperkube-base 0.10.1
    Kubernetes Submit Queue committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    ff529ab View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#67393 from nikhita/automated-cherry-pic…

    …k-of-#66249-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66249: fill in normal restmapping info with the legacy guess
    
    Fixes 1.10 part of kubernetes#67235
    
    Cherry pick of kubernetes#66249 on release-1.10.
    
    kubernetes#66249: fill in normal restmapping info with the legacy guess
    
    ```release-note
    Fix creation of custom resources when the CRD contains non-conventional pluralization and subresources
    ```
    Kubernetes Submit Queue committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    b16193f View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#67506 from yue9944882/automated-cherry-…

    …pick-of-#67471-origin-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#67471: should cast va instead of pv
    
    Cherry pick of kubernetes#67471 on release-1.10.
    
    kubernetes#67471: should cast va instead of pv
    Kubernetes Submit Queue committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    0c38c36 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2018

  1. Double check PVC if not found in syncVolume.

    If PV is bound by external PV binder (e.g. kube-scheduler), it's
    possible on heavy load that corresponding PVC is not synced to
    controller local cache yet.
    cofyc committed Aug 18, 2018
    Configuration menu
    Copy the full SHA
    085964e View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2018

  1. Configuration menu
    Copy the full SHA
    df3ab68 View commit details
    Browse the repository at this point in the history
  2. Add/Update CHANGELOG-1.10.md for v1.10.7.

    Anago GCB committed Aug 20, 2018
    Configuration menu
    Copy the full SHA
    d8eaa88 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f67ec93 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2018

  1. Merge pull request kubernetes#67155 from liggitt/automated-cherry-pic…

    …k-of-#66932-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66932 kubernetes#67433: Include unavailable API services in discovery response, allow failed discovery on initial quota controller start
    
    Cherry pick of kubernetes#66932 on release-1.10.
    
    kubernetes#66932: Include unavailable API services in discovery response
    kubernetes#67433: allow failed discovery on initial quota controller start
    
    ```release-note
    kube-apiserver now includes all registered API groups in discovery, including registered extension API group/versions for unavailable extension API servers.
    kube-controller-manager can now start the quota controller when discovery results can only be partially determined.
    ```
    Kubernetes Submit Queue committed Aug 21, 2018
    Configuration menu
    Copy the full SHA
    d92bf85 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2018

  1. Merge pull request kubernetes#67558 from cofyc/automated-cherry-pick-…

    …of-#67062-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#67062: Double check PVC if not found in syncVolume.
    
    Cherry pick of kubernetes#67062 on release-1.10.
    
    kubernetes#67062: Double check PVC if not found in syncVolume.
    Kubernetes Submit Queue committed Aug 22, 2018
    Configuration menu
    Copy the full SHA
    ed3ef1c View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2018

  1. Merge pull request kubernetes#67415 from cofyc/automated-cherry-pick-…

    …of-#66863-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#66863: attachdetach controller: attach volumes immediately when
    
    Cherry pick of kubernetes#66863 on release-1.10.
    
    kubernetes#66863: attachdetach controller: attach volumes immediately when
    Kubernetes Submit Queue committed Aug 23, 2018
    Configuration menu
    Copy the full SHA
    c14ab03 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2018

  1. Log real file's name and line

    pkg/kubectl/util/logs & staging/src/k8s.io/apiserver/pkg/util/logs
    use `glog.info(...)` but this function is not made to be wrapped because
    the underlying mechanism use a fixed call trace length to determine
    where the log has been emited.
    
    This results is having `logs.go:49` in the logs which is in the body
    of the wrapper function and thus useless.
    
    Instead use `glog.infoDepth(1, ...)` which tells the underlying mechanism
    to go back 1 more level in the call trace to determine where the log
    has been emitted.
    
    Signed-off-by: Sylvain Rabot <sylvain@abstraction.fr>
    sylr authored and Sylvain Rabot committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    170d59a View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#65709 from soltysh/automated-cherry-pic…

    …k-of-#60565-upstream-release-1.10-1530539685
    
    Automatic merge from submit-queue.
    
    when copy file from host to pod like this: 1.kubectl copy /tmp/test-f…
    
    **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 kubernetes#65530
    
    **Special notes for your reviewer**:
    /assign @juanvallejo 
    since you were looking at the original one as well.
    
    **Release note**:
    
    ```release-note
    NONE
    ```
    Kubernetes Submit Queue committed Aug 24, 2018
    Configuration menu
    Copy the full SHA
    a888fe4 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2018

  1. Merge pull request kubernetes#65637 from gnufied/automated-cherry-pic…

    …k-of-#65598-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#65598: Fix comments about default mount propagation
    
    Cherry pick of kubernetes#65598 on release-1.10.
    
    kubernetes#65598: Fix comments about default mount propagation
    
    ```release-note
    None
    ```
    Kubernetes Submit Queue committed Aug 28, 2018
    Configuration menu
    Copy the full SHA
    f341693 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2018

  1. Added test for scheduler informers

    bsalamat authored and cofyc committed Aug 29, 2018
    Configuration menu
    Copy the full SHA
    0d4097b View commit details
    Browse the repository at this point in the history
  2. Fix scheduler Pod informers to receive events when pods are scheduled…

    … by other schedulers.
    bsalamat authored and cofyc committed Aug 29, 2018
    Configuration menu
    Copy the full SHA
    a658f51 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    625a594 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    46b3b24 View commit details
    Browse the repository at this point in the history
  5. Bump ip-masq-agent to v2.1.1 - Update debian-iptables image for CVEs.…

    … - Change chain name to IP-MASQ to be compatible with the pre-injected masquerade rules.
    MrHohn committed Aug 29, 2018
    Configuration menu
    Copy the full SHA
    93a63f1 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2018

  1. Merge pull request kubernetes#67991 from cofyc/automated-cherry-pick-…

    …of-#63003-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#63003: Added test for scheduler informers
    
    Cherry pick of kubernetes#63003 on release-1.10.
    
    kubernetes#63003: Added test for scheduler informers
    Kubernetes Submit Queue committed Aug 30, 2018
    Configuration menu
    Copy the full SHA
    c6403d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d6328d View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2018

  1. support cross resource group for azure file

    fix test failure
    
    fix build failure
    andyzhangx committed Sep 3, 2018
    Configuration menu
    Copy the full SHA
    98cb2cd View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#64243 from jacobwgillespie/automated-ch…

    …erry-pick-of-#64098-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#64098: Fix running e2e tests with completed kube-system pods
    
    Cherry pick of kubernetes#64098 on release-1.10.
    
    kubernetes#64098: Fix running e2e tests with completed kube-system pods
    
    ```release-note
    NONE
    ```
    Kubernetes Submit Queue committed Sep 3, 2018
    Configuration menu
    Copy the full SHA
    ba92f7a View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2018

  1. Merge pull request kubernetes#67997 from kawych/automated-cherry-pick…

    …-of-#67505-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#67505: Fix parameter for fluentd-gcp-scaler
    
    Cherry pick of kubernetes#67505 on release-1.10.
    
    kubernetes#67505: Fix parameter for fluentd-gcp-scaler
    
    ```release-note
    NONE
    ```
    Kubernetes Submit Queue committed Sep 4, 2018
    Configuration menu
    Copy the full SHA
    c80bb53 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2018

  1. Add namespace for (cluster)role(binding) cloud-provider.

    Change the addonmanager mode to be from reconcile to EnsureExists.
    grayluck committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    e5f9dd7 View commit details
    Browse the repository at this point in the history
  2. Cluster Autoscaler 1.2.3

    losipiuk committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    4b71eda View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2018

  1. Configuration menu
    Copy the full SHA
    c7ee6ef View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#68348 from losipiuk/lo/ca-1.2.3

    Automatic merge from submit-queue.
    
    Cluster Autoscaler 1.2.3
    
    ```release-note
    Cluster Autoscaler 1.2.3 (release notes: https://github.com/kubernetes/autoscaler/releases/tag/cluster-autoscaler-1.2.3)
    ```
    Kubernetes Submit Queue committed Sep 6, 2018
    Configuration menu
    Copy the full SHA
    6105b05 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#68009 from sttts/automated-cherry-pick-…

    …of-#68001-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#68001: apiserver: forward panic in WithTimeout filter
    
    Cherry pick of kubernetes#68001 on release-1.10.
    
    kubernetes#68001: apiserver: forward panic in WithTimeout filter
    Kubernetes Submit Queue committed Sep 6, 2018
    Configuration menu
    Copy the full SHA
    cb1d872 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#68183 from andyzhangx/automated-cherry-…

    …pick-of-#68117-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#68117: support cross resource group for azure file
    
    Cherry pick of kubernetes#68117 on release-1.10.
    
    kubernetes#68117: support cross resource group for azure file
    Kubernetes Submit Queue committed Sep 6, 2018
    Configuration menu
    Copy the full SHA
    5351fb2 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2018

  1. Merge pull request kubernetes#67821 from sylr/automated-cherry-pick-o…

    …f-#67298-sylr-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#67298: Log real file's name and line
    
    Cherry pick of kubernetes#67298 on release-1.10.
    
    kubernetes#67298: Log real file's name and line
    Kubernetes Submit Queue committed Sep 7, 2018
    Configuration menu
    Copy the full SHA
    0716812 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#68057 from nikopen/automated-cherry-pic…

    …k-of-#67825-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#67825: Fix VMWare VM freezing bug by reverting kubernetes#51066
    
    Cherry pick of kubernetes#67825 on release-1.10.
    
    kubernetes#67825: Fix VMWare VM freezing bug by reverting kubernetes#51066
    Kubernetes Submit Queue committed Sep 7, 2018
    Configuration menu
    Copy the full SHA
    1df2188 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#68031 from MrHohn/automated-cherry-pick…

    …-of-#67916-upstream-release-1.10
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of kubernetes#67916: Bump ip-masq-agent to v2.1.1
    
    Cherry pick of kubernetes#67916 on release-1.10.
    
    kubernetes#67916: Bump ip-masq-agent to v2.1.1 - Update debian-iptables image
    
    ```release-note
    Bump ip-masq-agent to v2.1.1
    - Update debian-iptables image for CVEs.
    - Change chain name to IP-MASQ to be compatible with the
    pre-injected masquerade rules.
    ```
    Kubernetes Submit Queue committed Sep 7, 2018
    Configuration menu
    Copy the full SHA
    a963fce View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2018

  1. Merge pull request kubernetes#68258 from grayluck/automated-cherry-pi…

    …ck-of-#67224-upstream-release-1.10
    
    Automated cherry pick of kubernetes#67224: Add namespace for (cluster)role(binding) cloud-provider.
    k8s-ci-robot committed Sep 11, 2018
    Configuration menu
    Copy the full SHA
    6d34b42 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#66246 from wsong/automated-cherry-pick-…

    …of-#66138-upstream-release-1.10
    
    Automated cherry pick of kubernetes#66138: Don't validate HealthzBindAddress in KubeProxyConfiguration
    k8s-ci-robot committed Sep 11, 2018
    Configuration menu
    Copy the full SHA
    defbddd View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2018

  1. Merge pull request kubernetes#68364 from loburm/automated-cherry-pick…

    …-of-#67691-upstream-release-1.10
    
    Automated cherry pick of kubernetes#67691: Bump versions of components with latest security patches.
    k8s-ci-robot committed Sep 12, 2018
    Configuration menu
    Copy the full SHA
    efe960c View commit details
    Browse the repository at this point in the history
  2. Fixed GCE PD tests to wait for pod deletion after usage, and to not f…

    …orce detach PD's from nodes
    davidz627 committed Sep 12, 2018
    Configuration menu
    Copy the full SHA
    e38aff2 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2018

  1. Fix potential panic when getting azure load balancer status

    The IP address and security group rules may be nil when the resources
    are updating or deleting. Hence nil pointer deference may be happened
    then.
    feiskyer committed Sep 13, 2018
    Configuration menu
    Copy the full SHA
    0582480 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#68581 from davidz627/fix/pdTestLeak

    Fixed GCE PD tests to cleanup pods and disk properly after testing
    k8s-ci-robot committed Sep 13, 2018
    Configuration menu
    Copy the full SHA
    7eab6a4 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2018

  1. 1 Configuration menu
    Copy the full SHA
    fb9ee95 View commit details
    Browse the repository at this point in the history
  2. Add/Update CHANGELOG-1.10.md for v1.10.8.

    Anago GCB committed Sep 14, 2018
    1 Configuration menu
    Copy the full SHA
    557579c View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2018

  1. Configuration menu
    Copy the full SHA
    89d6a15 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2018

  1. Merge pull request kubernetes#68612 from feiskyer/automated-cherry-pi…

    …ck-of-#68609-upstream-release-1.10
    
    Automated cherry pick of kubernetes#68609: Fix potential panic when getting azure load balancer status
    k8s-ci-robot committed Sep 21, 2018
    Configuration menu
    Copy the full SHA
    735e2d1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#68775 from feiskyer/fix-68773

    Automated part cherry pick of kubernetes#68691: Fix load balancer issues when running zero nodes in vmss
    k8s-ci-robot committed Sep 21, 2018
    Configuration menu
    Copy the full SHA
    6b64246 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2018

  1. Add volume spec to mountedPod in actual state of world

    Add volume spec into mountedPod data struct in the actual state of the
    world.
    jingxu97 committed Sep 25, 2018
    Configuration menu
    Copy the full SHA
    7846de6 View commit details
    Browse the repository at this point in the history