1. 17 Aug, 2016 33 commits
  2. 16 Aug, 2016 7 commits
    • Jing Xu's avatar
      Add GetDeviceNameFromMount in mount_unsupported.go · 89de4f2f
      Jing Xu authored
      Add GetDeviceNameFromMount in mount_unsupported.go
      89de4f2f
    • Kubernetes Submit Queue's avatar
      Merge pull request #30486 from freehan/lbsrcfix · d412d572
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      syncNetworkUtil in kubelet and fix loadbalancerSourceRange on GCE
      
      fixes: #29997 #29039
      
      @yujuhong Can you take a look at the kubelet part?
      
      @girishkalele KUBE-MARK-DROP is the chain for dropping connections. Marked connection will be drop  in INPUT/OUTPUT chain of filter table. Let me know if this is good enough for your use case.
      d412d572
    • Matt Liggett's avatar
      Implement DisruptionController. · d60ba3c6
      Matt Liggett authored
      Part of #12611
      d60ba3c6
    • Madhusudan.C.S's avatar
      Update dnsprovider multi-type support test to test for an A-record and an AAAA-record. · b4ea59e6
      Madhusudan.C.S authored
      Having an A-record and a CNAME-record in the tests led to a confusion
      that dns providers support such configurations. This change avoids
      that confusion by putting only compatible records for the same domain
      name in the tests.
      b4ea59e6
    • Kubernetes Submit Queue's avatar
      Merge pull request #30301 from girishkalele/endpoint_hostnames · 1b0bc942
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Add NodeName to EndpointAddress object
      
      Adding a new string type `nodeName` to api.EndpointAddress.
      We could also do  *ObjectReference to the api.Node object instead, which would be more precise for the future.
      
      ```
      type ObjectReference struct {
          Kind            string    `json:"kind,omitempty"`
          Namespace       string    `json:"namespace,omitempty"`
          Name            string    `json:"name,omitempty"`
          UID             types.UID `json:"uid,omitempty"`
          APIVersion      string    `json:"apiVersion,omitempty"`
          ResourceVersion string    `json:"resourceVersion,omitempty"`
      
          // Optional. If referring to a piece of an object instead of an entire object, this string
          // should contain information to identify the sub-object. For example, if the object
          // reference is to a container within a pod, this would take on a value like:
          // "spec.containers{name}" (where "name" refers to the name of the container that triggered
          // the event) or if no container name is specified "spec.containers[2]" (container with
          // index 2 in this pod). This syntax is chosen only to have some well-defined way of
          // referencing a part of an object.
          // TODO: this design is not final and this field is subject to change in the future.
          FieldPath string `json:"fieldPath,omitempty"`
      }
      ```
      1b0bc942
    • Kubernetes Submit Queue's avatar
      Merge pull request #30680 from wojtek-t/fix_leak_resources · a594dcb1
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Check resource leaks only when needed
      
      @fejta 
      
      Broken by #28575
      a594dcb1
    • Erick Fejta's avatar
      40078b9f