1. 14 Jul, 2017 11 commits
  2. 13 Jul, 2017 14 commits
  3. 12 Jul, 2017 15 commits
    • Jun Xiang Tee's avatar
      c35662b6
    • Jun Xiang Tee's avatar
      0c93f756
    • Kubernetes Submit Queue's avatar
      Merge pull request #48831 from enisoc/resource-filter-test · b31d1db4
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 46738, 48827, 48831)
      
      Add test for kubectl resource filter.
      
      This should prevent regression of the bug fixed in #48786.
      b31d1db4
    • Kubernetes Submit Queue's avatar
      Merge pull request #48827 from foxish/move-more-e2e · 4da48f1c
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 46738, 48827, 48831)
      
      Moving disruption controller e2es to workload/
      
      Based on #45301
      Moving to track sig-apps in a single directory
      
      cc @kubernetes/sig-contributor-experience-misc @kubernetes/sig-apps-misc @erictune @kow3ns @crimsonfaith91
      4da48f1c
    • Kubernetes Submit Queue's avatar
      Merge pull request #46738 from bdbauer/mysql · 78aebb01
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      StatefulSet upgrade test - replicated database (mysql)
      
      **What this PR does / why we need it**:
      Adds a new upgrade test. The test creates a statefulset with a replicated mysql database. It populates the database and then continually polls the data while performing an upgrade. 
      
      Ultimately, this PR increases confidence of reliability during upgrades. It helps show that StatefulSets and Pod Disruption Budgets are doing what they're supposed to.  Code to pay attention to this was added for #38336.
      
      Also vendors in a golang mysql client driver, for use in the test.
      
      **Release note**:
      ```release-note
      NONE
      ```
      78aebb01
    • Kubernetes Submit Queue's avatar
      Merge pull request #48053 from luxas/kubeadm_move_envparam_to_api · 3f59f213
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 48781, 48817, 48830, 48829, 48053)
      
      kubeadm: Start to remove old envparams
      
      **What this PR does / why we need it**:
      
      Historically, the envparams feature was used as a way to easily debug `kubeadm` while developing it in the v1.3-v1.4 timeframe. Since then some parameters have been hanging around and not being moved into the API as they should have.
      
      Note: This is a temporary step; moving things into the API. Still, the API is gonna change, this is not the end state. But this is better than keeping the envparams.
      
      I'm gonna deal with `KubernetesDir` in the next PR.
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #
      
      Fixes: kubernetes/kubeadm#326
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      NONE
      ```
      @timothysc @pipejakob
      3f59f213
    • Kubernetes Submit Queue's avatar
      Merge pull request #48829 from vmware/vsphere-ByProviderID · 30e865e4
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 48781, 48817, 48830, 48829, 48053)
      
      vSphere for cloud-controller-manager
      
      **What this PR does / why we need it**:
      This is to implement the `NodeAddressesByProviderID` and `InstanceTypeByProviderID` methods for cloud-controller-manager for vSphere cloud provider.
      
      Currently vSphere cloud provider only supports VMs in the same folder.
      Thus `NodeAddressesByProviderID` is similar to `NodeAddresses` with a simple ProviderID to NodeName translation.
      
      `InstanceTypeByProviderID`  returns nil as same as `InstanceType`.
      
      **Which issue this PR fixes**
      Part of Issue https://github.com/kubernetes/kubernetes/issues/47257
      
      **Release note**:
      ```NONE
      ```
      30e865e4
    • Kubernetes Submit Queue's avatar
      Merge pull request #48830 from csbell/patch-conversion-typo · 6e3bcd9b
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 48781, 48817, 48830, 48829, 48053)
      
      Fix yaml-quote typo
      
      Caught this looking through CI logs.
      
      /assign wojtek-t
      6e3bcd9b
    • Kubernetes Submit Queue's avatar
      Merge pull request #48817 from pwittrock/master · e8230c71
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 48781, 48817, 48830, 48829, 48053)
      
      Move kubectl e2e tests to their own directory and prefix the test nam…
      
      ```release-note
      NONE
      ```
      e8230c71
    • Minhan Xia's avatar
      3e8b4a27
    • Kubernetes Submit Queue's avatar
      Merge pull request #48781 from rmmh/sig-storage · e1cd6315
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Make storage e2e tests start with [sig-storage] instead of [k8s.io].
      
      This makes understanding sig ownership from a test name very easy for
      tools and humans.
      
      - Use a SIGDescribe helper function that adds a [sig-storage] prefix instead of [k8s.io] for tests in storage/
      - Move a test that should be in storage into storage.
      - Make tests owned by multiple SIGs (configmap test) have [sig-storage] instead of [Volume] labels.
      
      This means that all tests that sig-storage directly owns can be found with a simple regex.
      
      /cc @kubernetes/sig-storage-pr-reviews 
      
      **What this PR does / why we need it**:
      This will be used to make a testgrid dashboard for sig-storage.
      
      **Release note**:
      ```release-note
      NONE
      ```
      
      Issue #48779
      e1cd6315
    • Kubernetes Submit Queue's avatar
      Merge pull request #48243 from brendandburns/imds · d2309562
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 48594, 47042, 48801, 48641, 48243)
      
      Add initial support for the Azure instance metadata service.
      
      Part of fixing #46632
      
      @colemickens @rootfs @jdumars @kris-nova
      d2309562
    • Kubernetes Submit Queue's avatar
      Merge pull request #48641 from smarterclayton/refactor_exec · 77b6b126
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 48594, 47042, 48801, 48641, 48243)
      
      Prepare to introduce websockets for exec and portforward
      
      Refactor the code in remotecommand to better represent the structure of
      what is common between portforward and exec.
      
      Ref #48633
      77b6b126
    • Kubernetes Submit Queue's avatar
      Merge pull request #48801 from FengyunPan/fix-panic · 5ed87346
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 48594, 47042, 48801, 48641, 48243)
      
      Fix panic of DeleteRoute()
      
      Fix #48800
      It should be 'addr_pairs', not 'routes'.
      
      **Release note**:
      ```release-note
      NONE
      ```
      5ed87346
    • Kubernetes Submit Queue's avatar
      Merge pull request #47042 from gyliu513/event-count · 0a44e5b5
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 48594, 47042, 48801, 48641, 48243)
      
      Validated expected event numbers for damoncontroller test.
      
      **What this PR does / why we need it**:
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #46629
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      none
      ```
      0a44e5b5