1. 12 Aug, 2015 2 commits
    • Muhammed Uluyol's avatar
      Properly handle nil interfaces in DeepCopy. · bc8bc372
      Muhammed Uluyol authored
      Running reflect.ValueOf(X) where X is a nil interface will return
      a zero Value. We cannot get the type (because no concrete type is
      known) and cannot check if the Value is nil later on due to the way
      reflect.Value works. So we should handle this case by immediately
      returning nil. We cannot type-assert a nil interface to another
      interface type (as no concrete type is assigned), so we must add
      another check to see if the returned interface is nil.
      bc8bc372
    • CJ Cullen's avatar
      Merge pull request #12464 from jiangyaoguo/add-events-for-kube-proxy · 103a39c6
      CJ Cullen authored
      Add Birthcry event to kube-proxy
      103a39c6
  2. 11 Aug, 2015 38 commits