1. 23 Nov, 2016 1 commit
  2. 22 Nov, 2016 26 commits
  3. 21 Nov, 2016 13 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #35767 from xiangpengzhao/fix-api-doc · 53caa61c
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Fix a link in api doc
      
      Remove an extra symbol `, it breaks a link in api doc.
      cc @caesarxuchao , thanks!
      53caa61c
    • Kubernetes Submit Queue's avatar
      Merge pull request #34617 from VojtechVitek/patch-1 · 7bd518ef
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Update Docker for Mac installation link
      
      **What this PR does / why we need it**:
      
      Fixes broken obsolete link about Docker for Mac installation.
      7bd518ef
    • Kubernetes Submit Queue's avatar
      Merge pull request #36444 from soltysh/issue31481 · 0fd70a49
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Read all resources for finalization and gc, not just preferred
      
      Fixes #31481. 
      
      Currently when starting namespace controller or garbage collector we only gather preferred version resources, which in case of multiple versions (you guessed it `batch/v2alpha1.CronJobs` again) isn't sufficient. This PR adds additional method which actually retrieves all resources from all versions and works on them.
      
      @kubernetes/sig-api-machinery ptal
      0fd70a49
    • Michael Taufen's avatar
      9f547084
    • Kubernetes Submit Queue's avatar
      Merge pull request #36869 from madhusudancs/kubefed-join-context-secret-name-flags · 67dc8739
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      [Federation][join-flags] Add flags for cluster context and secret names while joining clusters to federation.
      
      Vast majority of cluster contexts are not RFC 1123 subdomains. Since
      cluster and secret names for the API objects are derived from the
      cluster context name, there is no way for users to join clusters
      with such context names to federation, unless they modify the context
      name in their kubeconfigs itself. That's a lot of inconvenience and
      entirely goes against the goal and beats the purpose of the `kubefed`
      tool. So we are providing these flags to allow users to override these
      values.
      
      Also, since users register their clusters with federation, it is makes
      sense in terms of user experience to make the cluster name a positional
      argument because that feels more natural. Also, specifying cluster name
      in the join command as a mandatory positional argument make
      `kubefed join` consistent with `kubefed unjoin`. This also means
      `--cluster-context` is now made a flag and defaults to cluster name if
      unspecified.
      
      `--secret-name` also defaults to the cluster name if unspecified.
      
      Fixes: Issue #35954
      
      cc @kubernetes/sig-cluster-federation @quinton-hoole @irfanurrehman
      67dc8739
    • Kubernetes Submit Queue's avatar
      Merge pull request #37122 from childsb/revert_gid · a47614dd
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Revert "Use Gid when provisioning Gluster Volumes."
      
      On further inspection the design in #35460 was not secure enough.  This PR reverts the change. 
      
      This reverts commit 7a0d219d.
      a47614dd
    • Bowei Du's avatar
      Update the timeout in CLOSE_WAIT e2e test · 9aef074e
      Bowei Du authored
      I see some test flakes due to the timeout being too strict,
      updating to a larger value.
      
      Adding tail -n 1, it looks like there may be leftover state for other
      runs. We really only care about one of the CLOSE_WAIT entries.
      9aef074e
    • Jordan Liggitt's avatar
      Revert "Avoid hard-coding list of Node Conditions" · c214abb5
      Jordan Liggitt authored
      This reverts commit 511b2eca.
      c214abb5
    • Bowei Du's avatar
      Test flake: ignore dig failure; wait until timeout · 5b2c0075
      Bowei Du authored
      The intent of this test was to continue trying until the timeout has
      been reached. The extra assertion makes the test fail early when it
      should not.
      5b2c0075
    • Kubernetes Submit Queue's avatar
      Merge pull request #32868 from dshulyak/scale_up_down_test_case · 435268ac
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Validate pet set scale up/down order
      
      This change implements test cases to validate that:
      - scale up will be done in order
      - scale down in reverse order
      - if any of the pets will be unhealthy, scale up/down will halt
      
      related: https://github.com/kubernetes/kubernetes/issues/30082
      435268ac
    • Kubernetes Submit Queue's avatar
      Merge pull request #37203 from Random-Liu/fix-restart-test · ab200721
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Filter out non-RestartAlways mirror pod in restart test.
      
      Fixes #37202.
      
      > A quick fix is to filter out non-RestartAlways pods. Because either RestartNever and RestartOnFailure pods could succeed, and we can not deal with terminated mirror pods very well now.
      
      @yujuhong @gmarek 
      /cc @kubernetes/sig-node
      ab200721
    • Kubernetes Submit Queue's avatar
      Merge pull request #37174 from mbohlool/optional · 27a0a862
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Fields with omitempty tag should still be considered as optional
      
      We've added an "+optional" tag while ago for optional fields. Before that OpenAPI spec generated assumed all fields with "omitempty" in their json tags are optional. This should be still the case (as well as +optional tag) until these two things happen:
      
      - We update all documentation asking developers to use +optional (My bad, I should have added this after the +optional PR)
      - We fix swagger 1.2 spec generator to use +optional instead of omitempty.
      
      Fixes #37149
      27a0a862
    • Jeff Lowdermilk's avatar
      37667874