Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

feat: Add K8s 1.13.8 payload for Azure Stack. #27

Merged
merged 241 commits into from
Jul 11, 2019
Merged

Commits on Feb 8, 2019

  1. Fix kubernetes#73479 AWS NLB target groups missing tags

    `elbv2.AddTags` doesn't seem to support assigning the same set of
    tags to multiple resources at once leading to the following error:
      Error adding tags after modifying load balancer targets:
      "ValidationError: Only one resource can be tagged at a time"
    
    This can happen when using AWS NLB with multiple listeners pointing
    to different node ports.
    
    When k8s creates a NLB it creates a target group per listener along
    with installing security group ingress rules allowing the traffic to
    reach the k8s nodes.
    
    Unfortunately if those target groups are not tagged, k8s will not
    manage them, thinking it is not the owner.
    
    This small changes assigns tags one resource at a time instead of
    batching them as before.
    
    Signed-off-by: Brice Figureau <brice@daysofwonder.com>
    Brice Figureau committed Feb 8, 2019
    Configuration menu
    Copy the full SHA
    a0b4403 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2019

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

Commits on Feb 26, 2019

  1. Fix scanning of failed targets

    If a iSCSI target is down while a volume is attached, reading from
    /sys/class/iscsi_host/host415/device/session383/connection383:0/iscsi_connection/connection383:0/address
    fails with an error. Kubelet should assume that such target is not
    available / logged in and try to relogin. Eventually, if such error
    persists, it should continue mounting the volume if the other
    paths are healthy instead of failing whole WaitForAttach().
    jsafrane authored and redbaron committed Feb 26, 2019
    Configuration menu
    Copy the full SHA
    3007501 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2019

  1. Configuration menu
    Copy the full SHA
    f48a328 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8081a56 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    69e5fbe View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    48cfdd8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    51ae664 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2019

  1. Configuration menu
    Copy the full SHA
    a426d91 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9cb83c5 View commit details
    Browse the repository at this point in the history
  3. Add/Update CHANGELOG-1.13.md for v1.13.4.

    Anago GCB committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9e71ab4 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2019

  1. add Azure Container Registry anonymous repo support

    apply fix for msi and fix test failure
    andyzhangx committed Mar 1, 2019
    Configuration menu
    Copy the full SHA
    d5e695b View commit details
    Browse the repository at this point in the history
  2. DaemonSet e2e: Update image and rolling upgrade test timeout

    Use Nginx as the DaemonSet image instead of the ServeHostname image.
    This was changed because the ServeHostname has a sleep after terminating
    which makes it incompatible with the DaemonSet Rolling Upgrade e2e test.
    
    In addition, make the DaemonSet Rolling Upgrade e2e test timeout a
    function of the number of nodes that make up the cluster. This is
    required because the more nodes there are, the longer the time it will
    take to complete a rolling upgrade.
    
    Signed-off-by: Alexander Brand <alexbrand09@gmail.com>
    alexbrand authored and janetkuo committed Mar 1, 2019
    Configuration menu
    Copy the full SHA
    b68edb2 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2019

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

Commits on Mar 4, 2019

  1. cri_stats_provider: overload nil as 0 for exited containers stats

    Always report 0 cpu/memory usage for exited containers to make
    metrics-server work as expect.
    
    Signed-off-by: Lu Fengqi <lufq.fnst@cn.fujitsu.com>
    Lu Fengqi committed Mar 4, 2019
    Configuration menu
    Copy the full SHA
    5ee90a1 View commit details
    Browse the repository at this point in the history
  2. flush iptable chains first and then remove them

    while cleaning up ipvs mode. flushing iptable chains first and then
    remove the chains. this avoids trying to remove chains that are still
    referenced by rules in other chains.
    
    fixes kubernetes#70615
    teemow authored and nikopen committed Mar 4, 2019
    Configuration menu
    Copy the full SHA
    ee34e50 View commit details
    Browse the repository at this point in the history
  3. Checks whether we have cached runtime state before starting a contain…

    …er that requests any device plugin resource. If not, re-issue Allocate grpc calls. This allows us to handle the edge case that a pod got assigned to a node even before it populates its extended resource capacity.
    jiayingz committed Mar 4, 2019
    Configuration menu
    Copy the full SHA
    b1e7ef4 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2019

  1. Merge pull request kubernetes#74672 from logicalhan/automated-cherry-…

    …pick-of-#74636-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74636: Remove reflector metrics as they currently cause a memory
    k8s-ci-robot committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    b5f55a8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#74535 from freehan/automated-cherry-pic…

    …k-of-#73968-upstream-release-1.13
    
    Automated cherry pick of kubernetes#73968: record event on endpoint update failure
    k8s-ci-robot committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    3727b38 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#74687 from rajansandeep/automated-cherr…

    …y-pick-of-#74371-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74371: add health plugin in the DNS tests
    k8s-ci-robot committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    6c1e64b View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2019

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

Commits on Mar 7, 2019

  1. Bump debian-iptables to v11.0.1

    Rebase docker image on debian-base:0.4.1
    grayluck committed Mar 7, 2019
    Configuration menu
    Copy the full SHA
    3cef590 View commit details
    Browse the repository at this point in the history
  2. Adding a check to make sure UseInstanceMetadata flag is true to get d…

    …ata from metadata.
    rjaini authored and andyzhangx committed Mar 7, 2019
    Configuration menu
    Copy the full SHA
    33f85d5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd87260 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2019

  1. Fix the network policy tests.

    This is a cherrypick of the following commit
    https://github.com/kubernetes/kubernetes/pull/74290/commits
    lzang committed Mar 8, 2019
    Configuration menu
    Copy the full SHA
    249d74f View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2019

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

Commits on Mar 13, 2019

  1. Configuration menu
    Copy the full SHA
    4984f4d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a6d7a9 View commit details
    Browse the repository at this point in the history
  3. Allow session affinity a period of time to setup for new services.

    This is to deal with the flaky session affinity test.
    grayluck committed Mar 13, 2019
    Configuration menu
    Copy the full SHA
    1ac750e View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2019

  1. Configuration menu
    Copy the full SHA
    4d77748 View commit details
    Browse the repository at this point in the history
  2. Delay CSI client initialization

    cofyc committed Mar 14, 2019
    Configuration menu
    Copy the full SHA
    5eeb19b View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#75341 from grayluck/automated-cherry-pi…

    …ck-of-#75073-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75073: Allow session affinity a period of time to setup for new
    k8s-ci-robot committed Mar 14, 2019
    Configuration menu
    Copy the full SHA
    110766c View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2019

  1. kubelet: updated logic of verifying a static critical pod

    - check if a pod is static by its static pod info
    - meanwhile, check if a pod is critical by its corresponding mirror pod info
    Huang-Wei committed Mar 15, 2019
    Configuration menu
    Copy the full SHA
    9d61cc7 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2019

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

    …pick-of-#74599-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74599: add more logging in azure disk attach/detach
    k8s-ci-robot committed Mar 18, 2019
    Configuration menu
    Copy the full SHA
    d3bbb4b View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#74782 from andyzhangx/automated-cherry-…

    …pick-of-#74715-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74715: add Azure Container Registry anonymous repo support
    k8s-ci-robot committed Mar 18, 2019
    Configuration menu
    Copy the full SHA
    8efcbb1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#74822 from janetkuo/automated-cherry-pi…

    …ck-of-#72738-upstream-release-1.13
    
    Automated cherry pick of kubernetes#72738: DaemonSet e2e: Update image and rolling upgrade test timeout
    k8s-ci-robot committed Mar 18, 2019
    Configuration menu
    Copy the full SHA
    06c4ecc View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#74841 from liggitt/automated-cherry-pic…

    …k-of-#74755-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74755: Revert kubelet to default to ttl cache secret/configmap
    k8s-ci-robot committed Mar 18, 2019
    Configuration menu
    Copy the full SHA
    da36728 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#73850 from masterzen/automated-cherry-p…

    …ick-of-#73594-upstream-release-1.13
    
    Automated cherry pick of kubernetes#73594: Fix kubernetes#73479 AWS NLB target groups missing tags
    k8s-ci-robot committed Mar 18, 2019
    Configuration menu
    Copy the full SHA
    4ad5ca4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8f478a7 View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#74874 from nikopen/automated-cherry-pic…

    …k-of-#70616-upstream-release-1.13
    
    Automated cherry pick of kubernetes#70616: flush iptable chains first and then remove them
    k8s-ci-robot committed Mar 18, 2019
    Configuration menu
    Copy the full SHA
    c02f63d View commit details
    Browse the repository at this point in the history
  8. Merge pull request kubernetes#75041 from soltysh/automated-cherry-pic…

    …k-of-#75037-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75037: Fix panic in kubectl cp command
    k8s-ci-robot committed Mar 18, 2019
    Configuration menu
    Copy the full SHA
    c14a780 View commit details
    Browse the repository at this point in the history
  9. Merge pull request kubernetes#75137 from davidz627/automated-cherry-p…

    …ick-of-#74625-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74625: GetMountRefs fixed to handle corrupted mounts by treating it
    k8s-ci-robot committed Mar 18, 2019
    Configuration menu
    Copy the full SHA
    a732dcc View commit details
    Browse the repository at this point in the history
  10. Merge pull request kubernetes#74865 from littleroad/automated-cherry-…

    …pick-of-#74336-origin-release-1.13
    
    Automated cherry pick of kubernetes#74336: cri_stats_provider: overload nil as 0 for exited containers
    k8s-ci-robot committed Mar 18, 2019
    Configuration menu
    Copy the full SHA
    c2b3c96 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2019

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

    …pick-of-#74936-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74936: Adding a check to make sure UseInstanceMetadata flag is true
    k8s-ci-robot committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    61de23c View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#75312 from feiskyer/automated-cherry-pi…

    …ck-of-#75256-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75256: Ensure Azure load balancer cleaned up on 404 or 403
    k8s-ci-robot committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    2fc3627 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#75332 from feiskyer/automated-cherry-pi…

    …ck-of-#75282-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75282: Allow disable outbound snat when Azure standard load balancer
    k8s-ci-robot committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    a932d0a View commit details
    Browse the repository at this point in the history
  4. build/gci: bump CNI version to 0.7.5

    dcbw authored and Brandon Philips committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    c3dde5d View commit details
    Browse the repository at this point in the history
  5. fix smb unmount issue on Windows

    fix log warning
    
    use IsCorruptedMnt in GetMountRefs on Windows
    
    use errorno in IsCorruptedMnt check
    
    fix comments: add more error code
    
    add more error no checking
    
    change year
    
    fix comments
    andyzhangx committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    1fa893c View commit details
    Browse the repository at this point in the history
  6. fix race condition issue for smb mount on windows

    change var name
    andyzhangx committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    3b6f1f3 View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#75219 from lzang/release-1.13

    Fix the network policy tests.
    k8s-ci-robot committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    a74b90f View commit details
    Browse the repository at this point in the history
  8. Merge pull request kubernetes#75364 from cofyc/automated-cherry-pick-…

    …of-#74653-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74653: Distinguish volume path with mount path
    k8s-ci-robot committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    20cdc6c View commit details
    Browse the repository at this point in the history
  9. Merge pull request kubernetes#74680 from liggitt/automated-cherry-pic…

    …k-of-#74448-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74448: Explicitly set GVK when sending objects to webhooks
    k8s-ci-robot committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    6fbd00e View commit details
    Browse the repository at this point in the history
  10. Merge pull request kubernetes#75366 from cofyc/automated-cherry-pick-…

    …of-#74652-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74652: Delay CSI client initialization
    k8s-ci-robot committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    693b636 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2019

  1. Merge pull request kubernetes#75462 from philips/automated-cherry-pic…

    …k-of-#75455-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75455: build/gci: bump CNI version to 0.7.5
    k8s-ci-robot committed Mar 21, 2019
    Configuration menu
    Copy the full SHA
    7558cb7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d951fc7 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#75291 from losipiuk/lo/update-ca-versio…

    …n-1-13-2
    
    Update Cluster Autoscaler version to 1.13.2
    k8s-ci-robot committed Mar 21, 2019
    Configuration menu
    Copy the full SHA
    33be0e9 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#74994 from Huang-Wei/automated-cherry-p…

    …ick-of-#74222-upstream-release-1.13
    
    [1.13] Automated cherry pick of kubernetes#75144: kubelet: updated logic of verifying a static critical pod
    k8s-ci-robot committed Mar 21, 2019
    Configuration menu
    Copy the full SHA
    eee1d29 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#75079 from grayluck/iptable-img-1.13

    Bump debian-iptables to v11.0.1
    k8s-ci-robot committed Mar 21, 2019
    Configuration menu
    Copy the full SHA
    748dd2c View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2019

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

    …ck-of-#73824-upstream-release-1.13
    
    Automated cherry pick of kubernetes#73824: Checks whether we have cached runtime state before starting a
    k8s-ci-robot committed Mar 22, 2019
    Configuration menu
    Copy the full SHA
    1a91ffd View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#74654 from subramanian-neelakantan/vsph…

    …ere_zone_1_13
    
    places vsphere volumes as per zones
    k8s-ci-robot committed Mar 22, 2019
    Configuration menu
    Copy the full SHA
    55c118a View commit details
    Browse the repository at this point in the history
  3. make describers of different versions work properly when autoscaling/…

    …v2beta2 is not supported
    mars1024 committed Mar 22, 2019
    Configuration menu
    Copy the full SHA
    975d1c5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    437b111 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dc47162 View commit details
    Browse the repository at this point in the history
  6. bump repd min size in e2es

    msau42 committed Mar 22, 2019
    Configuration menu
    Copy the full SHA
    c6a87fa View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#75452 from liggitt/automated-cherry-pic…

    …k-of-#75451-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75451: Restore username and password kubectl flags
    k8s-ci-robot committed Mar 22, 2019
    Configuration menu
    Copy the full SHA
    2166946 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2019

  1. Configuration menu
    Copy the full SHA
    d307806 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0a5cfd1 View commit details
    Browse the repository at this point in the history
  3. Add/Update CHANGELOG-1.13.md for v1.13.5.

    Anago GCB committed Mar 25, 2019
    Configuration menu
    Copy the full SHA
    48a3ecb View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2019

  1. Configuration menu
    Copy the full SHA
    281f2ad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6867fc3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9232145 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2019

  1. Update config tests

    lbernail committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    74fa21d View commit details
    Browse the repository at this point in the history
  2. Bump go-openapi/jsonpointer and go-openapi/jsonreference versions

    xref: kubernetes#75653
    
    Signed-off-by: Jorge Alarcon Ochoa <alarcj137@gmail.com>
    alejandrox1 authored and spiffxp committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    41681b4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#75778 from spiffxp/automated-cherry-pic…

    …k-of-#75659-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75659: Bump go-openapi/jsonpointer and go-openapi/jsonreference
    k8s-ci-robot committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    0fab442 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#75597 from mars1024/automated-cherry-pi…

    …ck-of-#75176-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75176: make describers of different versions work properly when
    k8s-ci-robot committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    60d5879 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#75728 from losipiuk/automated-cherry-pi…

    …ck-of-#71561-upstream-release-1.13
    
    Automated cherry pick of kubernetes#71561: Fix updating 'currentMetrics' field for HPA with
    k8s-ci-robot committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    b5468b8 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2019

  1. Fix nil pointer dereference panic in attachDetachController

    add check `attachableVolumePlugin == nil` to operationGenerator.GenerateDetachVolumeFunc()
    mshaverdo authored and Timofey Titovets committed Mar 28, 2019
    Configuration menu
    Copy the full SHA
    05acd63 View commit details
    Browse the repository at this point in the history
  2. if ephemeral-storage not exist in initialCapacity, don't upgrade ephe…

    …meral-storage in node status
    changyaowei authored and Timofey Titovets committed Mar 28, 2019
    Configuration menu
    Copy the full SHA
    7e770e4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#74589 from redbaron/automated-cherry-pi…

    …ck-of-#74306-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74306: Fix scanning of failed targets
    k8s-ci-robot committed Mar 28, 2019
    Configuration menu
    Copy the full SHA
    18789bf View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2019

  1. Update gcp images with security patches

    [stackdriver addon] Bump prometheus-to-sd to v0.5.0 to pick up security fixes.
    [fluentd-gcp addon] Bump fluentd-gcp-scaler to v0.5.1 to pick up security fixes.
    [fluentd-gcp addon] Bump event-exporter to v0.2.4 to pick up security fixes.
    [fluentd-gcp addon] Bump prometheus-to-sd to v0.5.0 to pick up security fixes.
    [metatada-proxy addon] Bump prometheus-to-sd v0.5.0 to pick up security fixes.
    serathius authored and kawych committed Mar 29, 2019
    Configuration menu
    Copy the full SHA
    1142e94 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2019

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

Commits on Apr 2, 2019

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

Commits on Apr 3, 2019

  1. Avoid panic in cronjob sorting

    This change handles the case where the ith cronjob may have its start
    time set to nil.
    
    Previously, the Less method could cause a panic in case the ith
    cronjob had its start time set to nil, but the jth cronjob did not. It
    would panic when calling Before on a nil StartTime.
    tomwans authored and Vallery Lancey committed Apr 3, 2019
    Configuration menu
    Copy the full SHA
    50574dd View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2019

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

    …pick-of-#72143-upstream-release-1.13
    
    Automated cherry pick of kubernetes#72143: Fix aad support in kubectl for sovereign cloud
    k8s-ci-robot committed Apr 4, 2019
    Configuration menu
    Copy the full SHA
    73d746b View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#75609 from msau42/automated-cherry-pick…

    …-of-#74764-upstream-release-1.13
    
    Automated cherry pick of kubernetes#74764: bump repd min size in e2es
    k8s-ci-robot committed Apr 4, 2019
    Configuration menu
    Copy the full SHA
    2f5fde9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#75720 from DataDog/automated-cherry-pic…

    …k-of-#75295-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75295 upstream release 1.13
    k8s-ci-robot committed Apr 4, 2019
    Configuration menu
    Copy the full SHA
    df0d33a View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#75722 from DataDog/automated-cherry-pic…

    …k-of-#75283-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75283 upstream release 1.13
    k8s-ci-robot committed Apr 4, 2019
    Configuration menu
    Copy the full SHA
    4bb0d32 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#75520 from wangzhen127/automated-cherry…

    …-pick-of-#73288-upstream-release-1.13
    
    Automated cherry pick of kubernetes#73288 to release-1.13: Decouple node-problem-detector release from kubernetes
    k8s-ci-robot committed Apr 4, 2019
    Configuration menu
    Copy the full SHA
    1268b9e View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#75673 from praseodym/automated-cherry-p…

    …ick-of-#75375-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75375: stop vsphere cloud provider from spamming logs with `failed
    k8s-ci-robot committed Apr 4, 2019
    Configuration menu
    Copy the full SHA
    cbd9a53 View commit details
    Browse the repository at this point in the history
  7. Updated regional PD minimum size; changed regional PD failover test t…

    …o use StorageClassTest to generate PVC template
    verult committed Apr 4, 2019
    Configuration menu
    Copy the full SHA
    a2052f4 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2019

  1. Check for required name parameter in dynamic client

    The Create, Delete, Get, Patch, Update and UpdateStatus
    methods in the dynamic client all expect the name
    parameter to be non-empty, but did not validate this
    requirement, which could lead to a panic. Add explicit
    checks to these methods.
    lblackstone authored and Martin Vladev committed Apr 5, 2019
    Configuration menu
    Copy the full SHA
    55cdbb4 View commit details
    Browse the repository at this point in the history
  2. disable HTTP2 ingress test

    freehan committed Apr 5, 2019
    Configuration menu
    Copy the full SHA
    687bb48 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#75884 from kawych/automated-cherry-pick…

    …-of-#75362-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75362: Update gcp images with security patches
    k8s-ci-robot committed Apr 5, 2019
    Configuration menu
    Copy the full SHA
    5d6056b View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#75943 from jsafrane/1.13-aws-fstype

    1.13: Fix AWS driver fails to provision specified fsType
    k8s-ci-robot committed Apr 5, 2019
    Configuration menu
    Copy the full SHA
    1a85126 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2019

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

    …-of-#75746-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75746: Updated regional PD minimum size; changed regional PD
    k8s-ci-robot committed Apr 6, 2019
    Configuration menu
    Copy the full SHA
    e7b7983 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2019

  1. Configuration menu
    Copy the full SHA
    3aab41f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7424157 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2019

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

Commits on Apr 12, 2019

  1. Configuration menu
    Copy the full SHA
    3428f9a View commit details
    Browse the repository at this point in the history
  2. Set CPU metrics for init containers under containerd

    metrics-server doesn't return metrics for pods with init containers
    under containerd because they have incomplete CPU metrics returned by
    the kubelet /stats/summary API.
    
    This problem has been fixed in 1.14 (kubernetes#74336), but the cherry-picks
    dropped the `usageNanoCores` metric.
    
    This change adds the missing `usageNanoCores` metric for init containers.
    
    Fixes kubernetes#76292
    jmcmeek committed Apr 12, 2019
    Configuration menu
    Copy the full SHA
    b468466 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c90bf45 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    256ffed View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a73d8c4 View commit details
    Browse the repository at this point in the history
  6. kube-proxy: remove old cleanup rules

    thockin authored and spencerhance committed Apr 12, 2019
    Configuration menu
    Copy the full SHA
    0c76ce5 View commit details
    Browse the repository at this point in the history
  7. kube-proxy: reject 0 endpoints on forward

    Previously we only REJECTed on OUTPUT which works for packets from the
    node but not for packets from pods on the node.
    thockin authored and spencerhance committed Apr 12, 2019
    Configuration menu
    Copy the full SHA
    8619c0a View commit details
    Browse the repository at this point in the history
  8. Fix small race in e2e

    Occasionally we get spurious errors about "no route to host" when we
    race with kube-proxy.  This should reduce that.  It's mostly just log
    noise.
    thockin authored and spencerhance committed Apr 12, 2019
    Configuration menu
    Copy the full SHA
    a7a6dca View commit details
    Browse the repository at this point in the history
  9. Retool HTTP and UDP e2e utils

    This is a prefactoring for followup changes that need to use very
    similar but subtly different test.  Now it is more generic, though it
    pushes a little logic up the stack.  That makes sense to me.
    thockin authored and spencerhance committed Apr 12, 2019
    Configuration menu
    Copy the full SHA
    6ea241b View commit details
    Browse the repository at this point in the history
  10. Kube-proxy: REJECT LB IPs with no endpoints

    We REJECT every other case.  Close this FIXME.
    
    To get this to work in all cases, we have to process service in
    filter.INPUT, since LB IPS might be manged as local addresses.
    thockin authored and spencerhance committed Apr 12, 2019
    Configuration menu
    Copy the full SHA
    4fa80aa View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2019

  1. Bump coreos/go-semver

    The https://github.com/coreos/go-semver/ dependency has formally release
    v0.3.0 at commit e214231b295a8ea9479f11b70b35d5acf3556d9b.  This is the
    commit point we've been using, but the hack/verify-godeps.sh script
    notices the discrepancy and causes ci-kubernetes-verify job to fail.
    
    Fixes: kubernetes#76526
    
    Signed-off-by: Tim Pepper <tpepper@vmware.com>
    Tim Pepper committed Apr 13, 2019
    Configuration menu
    Copy the full SHA
    c2058ac View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#76527 from tpepper/release-1.13

    Bump coreos/go-semver
    k8s-ci-robot committed Apr 13, 2019
    Configuration menu
    Copy the full SHA
    4aabdd1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#76103 from vllry/automated-cherry-pick-…

    …of-#75772-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75772: Avoid panic in cronjob sorting
    k8s-ci-robot committed Apr 13, 2019
    Configuration menu
    Copy the full SHA
    fd47656 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#76212 from freehan/automated-cherry-pic…

    …k-of-#75411-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75411: disable HTTP2 ingress test
    k8s-ci-robot committed Apr 13, 2019
    Configuration menu
    Copy the full SHA
    dbb7ec0 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#76286 from wangzhen127/automated-cherry…

    …-pick-of-#76211-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76211 to release-1.13: Use Node-Problem-Detector v0.6.3 on GCI
    k8s-ci-robot committed Apr 13, 2019
    Configuration menu
    Copy the full SHA
    75128f9 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2019

  1. Fix Azure SLB support for multiple backend pools

    Azure VM and vmssVM support multiple backend pools for the same SLB, but
    not for different LBs.
    feiskyer committed Apr 18, 2019
    Configuration menu
    Copy the full SHA
    aa83325 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b4b138 View commit details
    Browse the repository at this point in the history
  3. Fix computing of cpu nano core usage

    CRI runtimes do not supply cpu nano core usage as it is not part of CRI
    stats. However, there are upstream components that still rely on such
    stats to function. The previous fix was faulty because the multiple
    callers could compete and update the stats, causing
    inconsistent/incoherent metrics. This change, instead, creates a
    separate call for updating the usage, and rely on eviction manager,
    which runs periodically, to trigger the updates. The caveat is that if
    eviction manager is completley turned off, no one would compute the
    usage.
    yujuhong authored and mattjmcnaughton committed Apr 18, 2019
    Configuration menu
    Copy the full SHA
    336922d View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2019

  1. Restore metrics-server using of IP addresses

    This preference list matches is used to pick prefered field from k8s
    node object. It was introduced in metrics-server 0.3 and changed default
    behaviour to use DNS instead of IP addresses. It was merged into k8s
    1.12 and caused breaking change by introducing dependency on DNS
    configuration.
    serathius committed Apr 19, 2019
    Configuration menu
    Copy the full SHA
    9670a74 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2019

  1. Merge pull request kubernetes#76445 from namreg/automated-cherry-pick…

    …-of-#76334-upstream-release-1.13
    
    [1.13] Automated cherry pick of kubernetes#76334: proxy: Take into account exclude CIDRs while deleting legacy
    k8s-ci-robot committed Apr 20, 2019
    Configuration menu
    Copy the full SHA
    ddd2add View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2019

  1. Configuration menu
    Copy the full SHA
    d544893 View commit details
    Browse the repository at this point in the history
  2. move disk lock process to azure cloud provider

    fix comments
    
    fix import keymux check error
    
    add unit test for attach/detach disk funcs
    
    fix build error
    
    fix build error
    andyzhangx committed Apr 22, 2019
    Configuration menu
    Copy the full SHA
    b2f4132 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2019

  1. e2e-node-tests: fix path to system specs

    e2e-node tests may use custom system specs for validating nodes to
    conform the specs. The functionality is switched on when the tests
    are run with this command:
    
        make SYSTEM_SPEC_NAME=gke test-e2e-node
    
    Currently the command fails with the error:
    
        F1228 16:12:41.568836   34514 e2e_node_suite_test.go:106] Failed to load system spec: open /home/rojkov/go/src/k8s.io/kubernetes/k8s.io/kubernetes/cmd/kubeadm/app/util/system/specs/gke.yaml: no such file or directory
    
    Move the spec file under `test/e2e_node/system/specs` and introduce a single
    public constant referring the file to use instead of multiple private constants.
    Dmitry Rozhkov committed Apr 23, 2019
    Configuration menu
    Copy the full SHA
    308a6e3 View commit details
    Browse the repository at this point in the history
  2. Fix concurrent map access in Portworx create volume call

    Fixes kubernetes#76340
    
    Signed-off-by: Harsh Desai <harsh@portworx.com>
    Harsh Desai committed Apr 23, 2019
    Configuration menu
    Copy the full SHA
    f976da6 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2019

  1. add shareName param in azure file storage class

    skip create azure file if it exists
    andyzhangx committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    a282177 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7664ce8 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2019

  1. Create the "internal" firewall rule for kubemark master.

    This is equivalent to the "internal" firewall rule that is created for
    the regular masters.
    The main reason for doing it is to allow prometheus scraping metrics
    from various kubemark master components, e.g. kubelet.
    
    Ref. kubernetes/perf-tests#503
    mm4tt committed Apr 26, 2019
    Configuration menu
    Copy the full SHA
    7db8743 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#76830 from serathius/automated-cherry-p…

    …ick-of-#76819-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76819: Restore metrics-server using of IP
    k8s-ci-robot committed Apr 26, 2019
    Configuration menu
    Copy the full SHA
    709c4c6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#76754 from feiskyer/automated-cherry-pi…

    …ck-of-#76691-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76691: Fix Azure SLB support for multiple backend pools
    k8s-ci-robot committed Apr 26, 2019
    Configuration menu
    Copy the full SHA
    a3d8a90 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2019

  1. Configuration menu
    Copy the full SHA
    c192956 View commit details
    Browse the repository at this point in the history
  2. Fix verify godeps failure for 1.13

    github.com/evanphx/json-patch added a new tag at the same sha this
    morning: https://github.com/evanphx/json-patch/releases/tag/v4.2.0
    
    This confused godeps. This PR updates our file to match godeps
    expectation.
    
    Fixes issue 77238
    mtaufen committed Apr 29, 2019
    Configuration menu
    Copy the full SHA
    271f793 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2019

  1. Merge pull request kubernetes#77241 from mtaufen/fix-godeps-1-13

    Fix verify godeps failure on 1.13
    k8s-ci-robot committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    ad89333 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bb243d6 View commit details
    Browse the repository at this point in the history
  3. Test kubectl cp escape

    tallclair authored and soltysh committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    fc41246 View commit details
    Browse the repository at this point in the history
  4. Properly handle links in tar

    soltysh committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    8f8227f View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#75998 from grayluck/iptable-img-1.13

    Bump debian-iptables to v11.0.2.
    k8s-ci-robot committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    fd686f1 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#75468 from andyzhangx/automated-cherry-…

    …pick-of-#75371-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75371: fix race condition issue for smb mount on windows
    k8s-ci-robot committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    585753c View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#76224 from frankgreco/automated-cherry-…

    …pick-of-#76216-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76216: ensuring that logic is checking for differences in listener
    k8s-ci-robot committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    161bf69 View commit details
    Browse the repository at this point in the history
  8. Merge pull request kubernetes#76405 from MrHohn/addon-manager-8.9

    [1.13] Update addon-manager to use debian-base:v1.0.0
    k8s-ci-robot committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    a6a8fe9 View commit details
    Browse the repository at this point in the history
  9. Merge pull request kubernetes#76485 from feiskyer/automated-cherry-pi…

    …ck-of-#72621-upstream-release-1.13
    
    Automated cherry pick of kubernetes#72621: Increase default maximumLoadBalancerRuleCount to 250
    k8s-ci-robot committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    54cd688 View commit details
    Browse the repository at this point in the history
  10. Merge pull request kubernetes#73161 from rojkov/automated-cherry-pick…

    …-of-#72455-upstream-release-1.13
    
    Automated cherry pick of kubernetes#72455: e2e-node-tests: fix path to system specs
    k8s-ci-robot committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    e270c7d View commit details
    Browse the repository at this point in the history
  11. Merge pull request kubernetes#76887 from andyzhangx/automated-cherry-…

    …pick-of-#76573-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76573: refactor detach azure disk retry operation
    k8s-ci-robot committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    aac3f46 View commit details
    Browse the repository at this point in the history
  12. Merge pull request kubernetes#77198 from andyzhangx/automated-cherry-…

    …pick-of-#77187-upstream-release-1.13
    
    Automated cherry pick of kubernetes#77187: fix disk list corruption issue
    k8s-ci-robot committed Apr 30, 2019
    Configuration menu
    Copy the full SHA
    a7f8c98 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2019

  1. Merge pull request kubernetes#76503 from jmcmeek/jmcmeek_76292

    Set CPU metrics for init containers under containerd
    k8s-ci-robot committed May 1, 2019
    Configuration menu
    Copy the full SHA
    300fede View commit details
    Browse the repository at this point in the history
  2. Update the dynamic volume limit in GCE PD

    Currently GCE PD support 128 maximum disks attached to a node for all
    machines types except shared-core. This PR updates the limit number to
    date.
    
    Change-Id: Id9dfdbd24763b6b4138935842c246b1803838b78
    jingxu97 committed May 1, 2019
    Configuration menu
    Copy the full SHA
    7ebfd90 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1cdcde8 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2019

  1. Configuration menu
    Copy the full SHA
    1080fed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2334066 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dc82714 View commit details
    Browse the repository at this point in the history
  4. Add unit tests

    feiskyer committed May 2, 2019
    Configuration menu
    Copy the full SHA
    af71c8c View commit details
    Browse the repository at this point in the history
  5. Update vendors

    feiskyer committed May 2, 2019
    Configuration menu
    Copy the full SHA
    b739942 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9db4ac0 View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#76961 from harsh-px/automated-cherry-pi…

    …ck-of-#76341-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76341: Fix concurrent map access in Portworx create volume call
    k8s-ci-robot committed May 2, 2019
    Configuration menu
    Copy the full SHA
    798e669 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    aab68ab View commit details
    Browse the repository at this point in the history
  9. Fix race condition between actual and desired state in kublet volume …

    …manager
    
    This PR fixes the issue kubernetes#75345. This fix modified the checking volume in
    actual state when validating whether volume can be removed from desired state or not. Only if volume status is already mounted in actual state, it can be removed from desired state.
    For the case of mounting fails always, it can still work because the
    check also validate whether pod still exist in pod manager. In case of
    mount fails, pod should be able to removed from pod manager so that
    volume can also be removed from desired state.
    jingxu97 committed May 2, 2019
    Configuration menu
    Copy the full SHA
    a589795 View commit details
    Browse the repository at this point in the history
  10. Merge pull request kubernetes#77118 from mm4tt/automated-cherry-pick-…

    …of-#76773-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76773: Create the "internal" firewall rule for kubemark master.
    k8s-ci-robot committed May 2, 2019
    Configuration menu
    Copy the full SHA
    6254e79 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2019

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

    …k-of-#76788-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76788: Test kubectl cp escape
    k8s-ci-robot committed May 3, 2019
    Configuration menu
    Copy the full SHA
    267805c View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#77043 from andyzhangx/automated-cherry-…

    …pick-of-#76988-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76988: add shareName param in azure file storage class
    k8s-ci-robot committed May 3, 2019
    Configuration menu
    Copy the full SHA
    2831e5e View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#76993 from feiskyer/cherry-pick-76656-t…

    …o-1.13
    
    Automated cherry pick of kubernetes#76656: Switch to instance-level update APIs for Azure VMSS loadbalancer operations
    k8s-ci-robot committed May 3, 2019
    Configuration menu
    Copy the full SHA
    99b0f4e View commit details
    Browse the repository at this point in the history
  5. Error when etcd3 watch finds delete event with nil prevKV

    Ryan McNamara authored and liggitt committed May 3, 2019
    Configuration menu
    Copy the full SHA
    504e3eb View commit details
    Browse the repository at this point in the history

Commits on May 6, 2019

  1. Merge pull request kubernetes#77338 from serathius/automated-cherry-p…

    …ick-of-#76762-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76762: Pick up security patches for fluentd-gcp-scaler by upgrading
    k8s-ci-robot committed May 6, 2019
    Configuration menu
    Copy the full SHA
    01784d0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c45e37b View commit details
    Browse the repository at this point in the history

Commits on May 7, 2019

  1. Merge pull request kubernetes#75818 from Nefelim4ag/automated-cherry-…

    …pick-of-#71471-upstream-release-1.13
    
    Automated cherry pick of kubernetes#71471: Fix nil pointer dereference panic in attachDetachController
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    ac6dd1f View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#77248 from qingling128/automated-cherry…

    …-pick-of-#77224-upstream-release-1.13
    
    Automated cherry pick of kubernetes#77224: Upgrade Stackdriver Logging Agent addon image from 1.6.0 to
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    6a3c911 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#77314 from jingxu97/automated-cherry-pi…

    …ck-of-#76977-upstream-release-1.13
    
    Update the dynamic volume limit in GCE PD
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    5e5755d View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#75358 from andyzhangx/automated-cherry-…

    …pick-of-#75087-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75087: fix smb unmount issue on Windows
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    37c4776 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#75819 from Nefelim4ag/automated-cherry-…

    …pick-of-#70645-upstream-release-1.13
    
    Automated cherry pick of kubernetes#70645: if ephemeral-storage not exist in initialCapacity, don't
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    1f2b721 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#76200 from mvladev/automated-cherry-pic…

    …k-of-#75072-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75072: Check for required name parameter in dynamic client
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    405aa2e View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes#77065 from losipiuk/lo/ca-1.13.4

    Update Cluster Autoscaler to 1.13.4
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    6c741eb View commit details
    Browse the repository at this point in the history
  8. Merge pull request kubernetes#77322 from tallclair/automated-cherry-p…

    …ick-of-#76665-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76665 upstream release 1.13
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    59dbc26 View commit details
    Browse the repository at this point in the history
  9. Merge pull request kubernetes#77351 from jingxu97/automated-cherry-pi…

    …ck-of-#75458-upstream-release-1.13
    
    Fix race condition between actual and desired state in kublet volume …
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    6ab2aa6 View commit details
    Browse the repository at this point in the history
  10. Merge pull request kubernetes#77394 from liggitt/automated-cherry-pic…

    …k-of-#76675-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76675: Error when etcd3 watch finds delete event with nil prevKV
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    978a0a8 View commit details
    Browse the repository at this point in the history
  11. Merge pull request kubernetes#76516 from spencerhance/automated-cherr…

    …y-pick-of-#72534-kubernetes#74394-upstream-release-1.13
    
    Automated cherry pick of kubernetes#72534: kube-proxy: rename internal field for clarity kubernetes#74394: Fix small race in e2e
    k8s-ci-robot committed May 7, 2019
    Configuration menu
    Copy the full SHA
    abdda3f View commit details
    Browse the repository at this point in the history

Commits on May 8, 2019

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

    Anago GCB committed May 8, 2019
    Configuration menu
    Copy the full SHA
    a23d7a3 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2019

  1. Bump addon-manager to v8.9.1

    - Rebase image on debian-base:v1.0.0
    MrHohn committed May 9, 2019
    Configuration menu
    Copy the full SHA
    0e47b0a View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#76770 from mattjmcnaughton/automated-ch…

    …erry-pick-of-#73659-kubernetes#74933-upstream-release-1.13
    
    Automated cherry pick of kubernetes#73659: Kubelet: add usageNanoCores from CRI stats provider kubernetes#74933: Fix computing of cpu nano core usage
    k8s-ci-robot committed May 9, 2019
    Configuration menu
    Copy the full SHA
    de38c05 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2019

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

Commits on May 13, 2019

  1. Update k8s-dns-node-cache image version

    This revised image resolves kubernetes dns#292 by updating the image from `k8s-dns-node-cache:1.15.2` to `k8s-dns-node-cache:1.15.2`
    StevenACoffman authored and prameshj committed May 13, 2019
    Configuration menu
    Copy the full SHA
    738eacc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    811618c View commit details
    Browse the repository at this point in the history

Commits on May 14, 2019

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

Commits on May 15, 2019

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

Commits on May 17, 2019

  1. fix CVE-2019-11244: kubectl --http-cache=<world-accessible dir> cre…

    …ates world-writeable cached schema files
    yuchengwu authored and yuchengwu committed May 17, 2019
    Configuration menu
    Copy the full SHA
    8bebb33 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c5c6886 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    45882f5 View commit details
    Browse the repository at this point in the history
  4. Update godeps

    feiskyer committed May 17, 2019
    Configuration menu
    Copy the full SHA
    7df9ea7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d31e2f5 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2019

  1. Remove terminated pod from summary api.

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

Commits on May 21, 2019

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

    …pick-of-#77426-upstream-release-1.13
    
    Automated cherry pick of kubernetes#77426: Remove terminated pod from summary api.
    k8s-ci-robot committed May 21, 2019
    Configuration menu
    Copy the full SHA
    ace1f3b View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#77879 from caesarxuchao/automated-cherr…

    …y-pick-of-#77619-upstream-release-1.13
    
    Automated cherry pick of kubernetes#77619: In GuaranteedUpdate, retry on any error if we are working
    k8s-ci-robot committed May 21, 2019
    Configuration menu
    Copy the full SHA
    b458486 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#77899 from mikedanese/automated-cherry-…

    …pick-of-#77613-upstream-release-1.13
    
    Automated cherry pick of kubernetes#77613 upstream release 1.13
    k8s-ci-robot committed May 21, 2019
    Configuration menu
    Copy the full SHA
    bb630af View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#77829 from prameshj/automated-cherry-pi…

    …ck-of-#77029-upstream-release-1.13
    
    Automated cherry pick of kubernetes#77029: Update k8s-dns-node-cache image version
    k8s-ci-robot committed May 21, 2019
    Configuration menu
    Copy the full SHA
    4667189 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#78028 from yuchengwu/automated-cherry-p…

    …ick-of-#77874-github-release-1.13
    
    Automated cherry pick of kubernetes#77874: fix CVE-2019-11244: `kubectl --http-cache=<world-accessible
    k8s-ci-robot committed May 21, 2019
    Configuration menu
    Copy the full SHA
    211b1ad View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes#77730 from yastij/automated-cherry-pick…

    …-of-#77656-upstream-release-1.13
    
    Automated cherry pick of kubernetes#77656: check if Memory is not nil for container stats
    k8s-ci-robot committed May 21, 2019
    Configuration menu
    Copy the full SHA
    285833b View commit details
    Browse the repository at this point in the history

Commits on May 22, 2019

  1. Merge pull request kubernetes#76275 from krzysztof-jastrzebski/automa…

    …ted-cherry-pick-of-#76060-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76060: Delete only unscheduled pods if node doesn't exist anymore.
    k8s-ci-robot committed May 22, 2019
    Configuration menu
    Copy the full SHA
    b386646 View commit details
    Browse the repository at this point in the history
  2. fix incorrect prometheus metrics

    little code refactor
    andyzhangx committed May 22, 2019
    Configuration menu
    Copy the full SHA
    050460c View commit details
    Browse the repository at this point in the history
  3. Fix eviction dry-run

    Antoine Pelisse committed May 22, 2019
    Configuration menu
    Copy the full SHA
    e554d70 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2019

  1. Revert "Use consistent imageRef during container startup"

    This reverts commit 26e3c86.
    tallclair committed May 24, 2019
    Configuration menu
    Copy the full SHA
    9bba83f View commit details
    Browse the repository at this point in the history

Commits on May 28, 2019

  1. fix azure retry issue when return 2XX with error

    fix comments
    andyzhangx committed May 28, 2019
    Configuration menu
    Copy the full SHA
    4795d1d View commit details
    Browse the repository at this point in the history

Commits on May 30, 2019

  1. Merge pull request kubernetes#77234 from apelisse/automated-cherry-pi…

    …ck-of-#76969-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76969: Fix eviction dry-run
    k8s-ci-robot committed May 30, 2019
    Configuration menu
    Copy the full SHA
    ac5aa6a View commit details
    Browse the repository at this point in the history

Commits on May 31, 2019

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

    …pick-of-#77722-upstream-release-1.13
    
    Automated cherry pick of kubernetes#77722: fix incorrect prometheus metrics
    k8s-ci-robot committed May 31, 2019
    Configuration menu
    Copy the full SHA
    7828858 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#78423 from andyzhangx/automated-cherry-…

    …pick-of-#78298-upstream-release-1.13
    
    Automated cherry pick of kubernetes#78298: fix azure retry issue when return 2XX with error
    k8s-ci-robot committed May 31, 2019
    Configuration menu
    Copy the full SHA
    b888362 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d7b359c View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#78035 from liggitt/automated-cherry-pic…

    …k-of-#78029-upstream-release-1.13
    
    Automated cherry pick of kubernetes#78029: Terminate watchers when watch cache is destroyed
    k8s-ci-robot committed May 31, 2019
    Configuration menu
    Copy the full SHA
    578e284 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#78320 from tallclair/automated-cherry-p…

    …ick-of-#78261-upstream-release-1.13
    
    Revert "Use consistent imageRef during container startup"
    k8s-ci-robot committed May 31, 2019
    Configuration menu
    Copy the full SHA
    7d58a49 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2019

  1. Merge pull request kubernetes#78065 from feiskyer/az-network-2018-07-…

    …01-1.13
    
    Automated cherry pick of kubernetes#78012: Upgrade Azure network API version to 2018-07-01
    k8s-ci-robot committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    109996e View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#78568 from DataDog/automated-cherry-pic…

    …k-of-#77802-upstream-release-1.13
    
    Automated cherry pick of kubernetes#77802 upstream release 1.13
    k8s-ci-robot committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    4683545 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2019

  1. Configuration menu
    Copy the full SHA
    77162bf View commit details
    Browse the repository at this point in the history
  2. Add/Update CHANGELOG-1.13.md for v1.13.7.

    Anago GCB committed Jun 6, 2019
    Configuration menu
    Copy the full SHA
    6efcbfc View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2019

  1. fix: update vm if detach a non-existing disk

    fix gofmt issue
    andyzhangx committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    bc63508 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2019

  1. Merge pull request kubernetes#77623 from MrHohn/addon-manager-cherry-…

    …1.13
    
    [1.13] Bump addon-manager to v8.9.1
    k8s-ci-robot committed Jun 10, 2019
    Configuration menu
    Copy the full SHA
    6e79b18 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2019

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

Commits on Jun 13, 2019

  1. Merge pull request kubernetes#77375 from mansi-a/automated-cherry-pic…

    …k-of-#76299-upstream-release-1.13
    
    Automated cherry pick of kubernetes#76299: Short-circuit quota admission rejection on zero-delta
    k8s-ci-robot committed Jun 13, 2019
    Configuration menu
    Copy the full SHA
    bda90cd View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2019

  1. ipvs: fix string check for IPVS protocol during graceful termination

    Signed-off-by: Andrew Sy Kim <kiman@vmware.com>
    andrewsykim committed Jun 17, 2019
    Configuration menu
    Copy the full SHA
    a81ae9d View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2019

  1. fix flexvol stuck issue due to corrupted mnt point

    fix comments about PathExists
    
    fix comments
    
    revert change in PathExists func
    andyzhangx committed Jun 18, 2019
    Configuration menu
    Copy the full SHA
    910fc69 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2019

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

Commits on Jun 20, 2019

  1. Merge pull request kubernetes#77833 from anfernee/release-1.13

    Bump ip-masq-agent version to v2.3.0
    k8s-ci-robot committed Jun 20, 2019
    Configuration menu
    Copy the full SHA
    4fdab12 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#78882 from liggitt/procmount-1.13

    1.13: Fix incorrect procMount defaulting
    k8s-ci-robot committed Jun 20, 2019
    Configuration menu
    Copy the full SHA
    d54e55e View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#79132 from andyzhangx/automated-cherry-…

    …pick-of-#75234-upstream-release-1.13
    
    Automated cherry pick of kubernetes#75234: fix flexvol stuck issue due to corrupted mnt point
    k8s-ci-robot committed Jun 20, 2019
    Configuration menu
    Copy the full SHA
    f2941e2 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2019

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

    …pick-of-#78700-upstream-release-1.13
    
    Automated cherry pick of kubernetes#78700: fix: update vm if detach a non-existing disk
    k8s-ci-robot committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    22e16e3 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2019

  1. Merge pull request kubernetes#79102 from andrewsykim/automated-cherry…

    …-pick-of-#78999-origin-release-1.13
    
    Automated cherry pick of kubernetes#78999: ipvs: fix string check for IPVS protocol during graceful
    k8s-ci-robot committed Jun 22, 2019
    Configuration menu
    Copy the full SHA
    d952267 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2019

  1. kubelet: retry pod sandbox creation when containers were never created

    If kubelet never gets past sandbox creation (i.e., never attempted to
    create containers for a pod), it should retry the sandbox creation on
    failure, regardless of the restart policy of the pod.
    yujuhong committed Jun 27, 2019
    Configuration menu
    Copy the full SHA
    1c0cfe3 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2019

  1. Default resourceGroup should be used when value of annotation azure-l…

    …oad-balancer-resource-group is empty string
    feiskyer committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    a93e73c View commit details
    Browse the repository at this point in the history
  2. Replace bitbucket with github

    This commit has the following changes:
    
    - Replace `bitbucket.org/ww/goautoneg` with `github.com/munnerz/goautoneg`.
    - Replace `bitbucket.org/bertimus9/systemstat` with `github.com/nikhita/systemstat`.
    - Bump kube-openapi to remove so that it's dependency on `bitbucket.org/ww/goautoneg`
    moves to `github.com/munnerz/goautoneg`.
    - Generate `swagger.json` generated from the above change.
    - Update `BUILD` files.
    
    Bitbucket is replaced with GitHub because:
    
    Atlassian finally pulled the plug on their 1.0 api and forces everyone
    to use 2.0 now: https://developer.atlassian.com/cloud/bitbucket/deprecation-notice-v1-apis/
    
    This leads to an error like:
    
    ```
    godep: error downloading dep (bitbucket.org/ww/goautoneg): https://api.bitbucket.org/1.0/repositories/ww/goautoneg: 410 Gone
    ```
    
    This was fixed in upstream go in golang/tools@13ba8ad.
    
    To fix this in k/k:
    
    1) We'll need to either bump our vendored version
    https://github.com/kubernetes/kubernetes/blob/release-1.13/vendor/golang.org/x/tools/go/vcs/vcs.go#L676.
    However, this bump brings in _lots_ of changes.
    
    2) We can entirely remove our dependency on bitbucket.
    
    The second point is better because:
    
    1) godep itself vendors in an older version: https://github.com/tools/godep/blob/master/vendor/golang.org/x/tools/go/vcs/vcs.go#L667.
    This means that anyone who installs godep directly, without forking it,
    will not be able to use it with Kubernetes if we stick to bitbucket.
    
    2) Bumping `golang/x/tools` requires running `godep restore`, which doesn't
    work because that uses the 1.0 api...leading to a catch-22 like situation.
    nikhita committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    409df0a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    894725b View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#79501 from nikhita/remove-bitbucket-01

    [1.13] Replace bitbucket with github to fix godep error
    k8s-ci-robot committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    bd6da4f View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#79183 from tallclair/automated-cherry-p…

    …ick-of-#78313-upstream-release-1.13
    
    Automated cherry pick of kubernetes#78313: Avoid the default server mux
    k8s-ci-robot committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    8ab5246 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2019

  1. Merge pull request kubernetes#79484 from yujuhong/automated-cherry-pi…

    …ck-of-#79451-upstream-release-1.13
    
    Automated cherry pick of kubernetes#79451: kubelet: retry pod sandbox creation when containers were
    k8s-ci-robot committed Jun 29, 2019
    Configuration menu
    Copy the full SHA
    5a2ff43 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#79518 from feiskyer/automated-cherry-pi…

    …ck-of-#79514-upstream-release-1.13
    
    Automated cherry pick of kubernetes#79514: Default resourceGroup should be used when value of annotation
    k8s-ci-robot committed Jun 29, 2019
    Configuration menu
    Copy the full SHA
    cbc76cf View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2019

  1. fix kubelet can not delete orphaned pod directory when the kubelet's …

    …root directory symbolically links to another device's directory
    gaorong authored and SataQiu committed Jun 30, 2019
    Configuration menu
    Copy the full SHA
    61c5315 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2019

  1. Fix AWS DHCP option set domain names causing garbled InternalDNS or H…

    …ostname addresses on Node
    wongma7 committed Jul 1, 2019
    Configuration menu
    Copy the full SHA
    eb87fe3 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2019

  1. Fix closing of dirs in doSafeMakeDir

    This fixes the issue where "childFD" from syscall.Openat is assigned to
    a local variable inside the for loop, instead of the correct one in the
    function scope. This results in that when trying to close the "childFD"
    in the function scope, it will be equal to "-1", instead of the correct
    value.
    odinuge committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    01e9de6 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2019

  1. There are various reasons that the HPA will decide not the change the

    current scale. Two important ones are when missing metrics might
    change the direction of scaling, and when the recommended scale is
    within tolerance of the current scale.
    
    The way that ReplicaCalculator signals it's desire to not change the
    current scale is by returning the current scale. However the current
    scale is from scale.Status.Replicas and can be larger than
    scale.Spec.Replicas (e.g. during Deployment rollout with configured
    surge). This causes a positive feedback loop because
    scale.Status.Replicas is written back into scale.Spec.Replicas,
    further increasing the current scale.
    
    This PR fixes the feedback loop by plumbing the replica count from
    spec through horizontal.go and replica_calculator.go so the calculator
    can punt with the right value.
    Joseph Burnett committed Jul 3, 2019
    Configuration menu
    Copy the full SHA
    42d1672 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes#79707 from josephburnett/release-1.13

    Cherry pick kubernetes#79035 to 1.13 (Fix HPA feedback from writing status.replicas to spec.replicas)
    k8s-ci-robot committed Jul 3, 2019
    Configuration menu
    Copy the full SHA
    04b7e66 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes#79572 from SataQiu/automated-cherry-pic…

    …k-of-#79094-up-release-1.13
    
    Automated cherry pick of kubernetes#79094: fix kubelet can not delete orphaned pod directory when "/var/lib/kubelet/pods" directory symbolically links to another device's directory
    k8s-ci-robot committed Jul 3, 2019
    Configuration menu
    Copy the full SHA
    23bcaa1 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes#79619 from wongma7/automated-cherry-pic…

    …k-of-#79446-upstream-release-1.13
    
    Automated cherry pick of kubernetes#79446: Fix AWS DHCP option set domain names causing garbled
    k8s-ci-robot committed Jul 3, 2019
    Configuration menu
    Copy the full SHA
    b63eede View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes#79665 from odinuge/automated-cherry-pic…

    …k-of-#79534-upstream-release-1.13
    
    Automated cherry pick of kubernetes#79534: Fix closing of dirs in doSafeMakeDir
    k8s-ci-robot committed Jul 3, 2019
    Configuration menu
    Copy the full SHA
    ff7fb33 View commit details
    Browse the repository at this point in the history
  6. edit google dns hostname

    rajansandeep authored and BenTheElder committed Jul 3, 2019
    Configuration menu
    Copy the full SHA
    e6be728 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2019

  1. Merge pull request kubernetes#79749 from BenTheElder/automated-cherry…

    …-pick-of-#79731-upstream-release-1.13
    
    Automated cherry pick of kubernetes#79731: edit google dns hostname
    k8s-ci-robot committed Jul 4, 2019
    Configuration menu
    Copy the full SHA
    0c6d31a View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2019

  1. Merge tag 'v1.13.8' into test-release-1.13

    Kubernetes official release v1.13.8
    rjaini committed Jul 9, 2019
    Configuration menu
    Copy the full SHA
    404b0ba View commit details
    Browse the repository at this point in the history