1. 02 Aug, 2016 18 commits
  2. 01 Aug, 2016 14 commits
  3. 31 Jul, 2016 3 commits
    • k8s-merge-robot's avatar
      Merge pull request #29009 from bboreham/hairpin-via-cni · 63602348
      k8s-merge-robot authored
      Automatic merge from submit-queue
      
      Use the CNI bridge plugin to set hairpin mode
      
      Following up this part of #23711:
      
      >  I'd like to wait until containernetworking/cni#175 lands and then just pass the request through to CNI.
      
      The code here just
       * passes the required setting down from kubenet to CNI
       * disables `DockerManager` from doing hairpin-veth, if kubenet is in use
      
      Note to test you need a very recent version of the CNI `bridge` plugin; the one brought in by #28799 should be OK.
      
      Also relates to https://github.com/kubernetes/kubernetes/issues/19766#issuecomment-232722864
      63602348
    • k8s-merge-robot's avatar
      Merge pull request #28636 from derekwaynecarr/quota_pvc_storage · 6ae6450a
      k8s-merge-robot authored
      Automatic merge from submit-queue
      
      Add support to quota pvc storage requests
      
      Adds support to quota cumulative `PersistentVolumeClaim` storage requests in a namespace.
      
      Per our chat today @markturansky @abhgupta - this is not done (lacks unit testing), but is functional.
      
      This lets quota enforcement for `PersistentVolumeClaim` to occur at creation time.  Supporting bind time enforcement would require substantial more work.  It's possible this is sufficient for many, so I am opening it up for feedback.
      
      In the future, I suspect we may want to treat local disk in a special manner, but that would have to be a different resource altogether (i.e. `requests.disk`) or something.
      
      Example quota:
      
      ```
      apiVersion: v1
      kind: ResourceQuota
      metadata:
        name: quota
      spec:
        hard:
          persistentvolumeclaims: "10"
          requests.storage: "40Gi"
      ```
      
      /cc @kubernetes/rh-cluster-infra @deads2k 
      6ae6450a
    • Wojciech Tyczynski's avatar
      Merge pull request #27417 from Pensu/master · 37a52b8f
      Wojciech Tyczynski authored
      Fixing resourcequota link
      37a52b8f
  4. 30 Jul, 2016 5 commits