1. 15 Nov, 2016 8 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #35543 from philips/improve-version · 79fc0a95
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      kubectl: add less verbose version
      
      The kubectl version output is very complex and makes it hard for users
      and vendors to give actionable information. For example during the
      recent Kubernetes 1.4.3 TLS security scramble I had to write a one-liner
      for users to get out the version number to give to figure out if they
      are vulnerable:
      
      ```
      $ kubectl version | grep -i Server | sed  -n 's%.*GitVersion:"\([^"]*\).*%\1%p'
      ```
      
      Instead this patch outputs simply output by default
      
      ```
      ./kubectl version
      Client Version: v1.4.3
      Server Version: v1.4.3
      ```
      
      Adding the `--verbose` flag will output the old format.
      79fc0a95
    • Kubernetes Submit Queue's avatar
      Merge pull request #35897 from k82cn/fix_mac_build · d8fa4f4d
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Fixed failed build on Mac.
      
      fixed build error on Mac.
      d8fa4f4d
    • Kubernetes Submit Queue's avatar
      Merge pull request #36723 from dims/fix-matchcontainer-output-retry · a7b63e1a
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Cleanup pod in MatchContainerOutput
      
      MatchContainerOutput always creates a pod and does not cleanup. We need
      to fix this to be better at re-trying the scenarios.
      
      When there is an error say in the first attempt of ExpectNoErrorWithRetries
      (for example in "Pods should contain environment variables for services" test)
      the retries logic calls MatchContainerOutput another time and the
      podClient.create fails correctly since the pod was not cleaned up the
      first time MatchContainerOutput was called.
      
      Fixes #35089
      a7b63e1a
    • Kubernetes Submit Queue's avatar
      Merge pull request #36776 from bowei/dns-image-alpine · 4528bcd2
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Change dnsutils image to use alpine
      
      This reduces the size of the dnsutils image and should reduce the # of failed e2e test runs due to image pull timeout.
      4528bcd2
    • Davanum Srinivas's avatar
      Cleanup pod in MatchContainerOutput · d4a91220
      Davanum Srinivas authored
      MatchContainerOutput always creates a pod and does not cleanup. We need
      to fix this to be better at re-trying the scenarios.
      
      When there is an error say in the first attempt of ExpectNoErrorWithRetries
      (for example in "Pods should contain environment variables for services" test)
      the retries logic calls MatchContainerOutput another time and the
      podClient.create fails correctly since the pod was not cleaned up the
      first time MatchContainerOutput was called.
      
      Fixes #35089
      d4a91220
    • Kubernetes Submit Queue's avatar
      Merge pull request #36767 from vishh/rename-cgroups-flags · 3245e8b3
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      [kubelet] rename --cgroups-per-qos to --experimental-cgroups-per-qos
      
      This reflects the true nature of "cgroups per qos" feature.
      
      ```release-note
       * Rename `--cgroups-per-qos` to `--experimental-cgroups-per-qos` in Kubelet
      ```
      3245e8b3
    • Kubernetes Submit Queue's avatar
      Merge pull request #36771 from euank/bump-some-memory · 122a228b
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      tests: update memory resource limits
      
      ```release-note
      NONE
      ```
      
      On ubuntu, the `RestartNever` test OOMs its cgroup limit fairly
      frequently.
      
      This bumps the number up to something suitably large since the test
      isn't testing anything related to this anyways.
      
      Fixes #36159
      
      Fix based on https://github.com/kubernetes/kubernetes/issues/36159#issuecomment-258992255
      
      cc @yujuhong @saad-ali
      122a228b
    • Kubernetes Submit Queue's avatar
      Merge pull request #35587 from rkouj/master · c1b24815
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Add test for: mount a secret with another secret having same name in different namespace
      
      <!--  Thanks for sending a pull request!  Here are some tips for you:
      1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md
      2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md
      3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes
      -->
      
      **What this PR does / why we need it**:
      
      If two secrets exist with the same name but different namespace, a pod in one namespace should be able to mount the secret without issue.
      
      **Which issue this PR fixes** _(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)_: fixes #
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      <!--  Steps to write your release note:
      1. Use the release-note-* labels to set the release note state (if you have access) 
      2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. 
      -->
      
      ``` release-note
      ```
      
      …nother secret with same name and different namespace
      c1b24815
  2. 14 Nov, 2016 28 commits
  3. 13 Nov, 2016 3 commits
  4. 12 Nov, 2016 1 commit