1. 08 Apr, 2017 1 commit
  2. 28 Mar, 2017 4 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #43727 from bowei/ping-instead-of-wget · d1bff958
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Use ping to ip instead of wget google.com in net connectivity check
      
      This is a flakey test and this commit reduces the number of dependent
      systems involved with the flake.
      d1bff958
    • Bowei Du's avatar
      Use ping to ip instead of wget google.com in net connectivity check · d3e49591
      Bowei Du authored
      This is a flakey test and this commit reduces the number of dependent
      systems involved with the flake.
      d3e49591
    • Kubernetes Submit Queue's avatar
      Merge pull request #42974 from vmware/VSANPolicyProvisioningForKubernetesOnKubernetesRepo · 38431080
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 42835, 42974)
      
      VSAN policy support for storage volume provisioning inside kubernetes
      
      The vsphere users will have the ability to specify custom Virtual SAN Storage Capabilities during dynamic volume provisioning. You can now define storage requirements, such as performance and availability, in the form of storage capabilities during dynamic volume provisioning. The storage capability requirements are converted into a Virtual SAN policy which are then pushed down to the Virtual SAN layer when a storage volume (virtual disk) is being created. The virtual disk is distributed across the Virtual SAN datastore to meet the requirements.
      
      For example, User creates a storage class with VSAN storage capabilities:
      
      > kind: StorageClass
      > apiVersion: storage.k8s.io/v1beta1
      > metadata:
      >   name: slow
      > provisioner: kubernetes.io/vsphere-volume
      > parameters:
      >   hostFailuresToTolerate: "2"
      >   diskStripes: "1"
      >   cacheReservation: "20"
      >   datastore: VSANDatastore
      
      The vSphere Cloud provider provisions a virtual disk (VMDK) on VSAN with the policy configured to the disk.
      
      When you know storage requirements of your application that is being deployed on a container, you can specify these storage capabilities when you create a storage class inside Kubernetes.
      
      @pdhamdhere @tthole @abrarshivani @divyenpatel 
      
      **Release note**:
      
      ```release-note
      None
      ```
      38431080
    • Kubernetes Submit Queue's avatar
      Merge pull request #42835 from deads2k/server-01-remove-insecure · 4159cb57
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 42835, 42974)
      
      remove legacy insecure port options from genericapiserver
      
      The insecure port has been a source of problems and it will prevent proper aggregation into a cluster, so the genericapiserver has no need for it.  In addition, there's no reason for it to be in the main kube-apiserver flow either.  This pull removes it from genericapiserver and removes it from the shared kube-apiserver code.  It's still wired up in the command, but its no longer possible for someone to mess up and start using in mainline code.
      
      @kubernetes/sig-api-machinery-misc @ncdc
      4159cb57
  3. 27 Mar, 2017 35 commits