1. 04 Apr, 2017 1 commit
  2. 03 Apr, 2017 2 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #42016 from MHBauer/fix-copypasta · 81545c29
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Update godoc to match
      
      **What this PR does / why we need it**:
      comments don't match the code. I can also just remove them.
      
      **Which issue this PR fixes**
      golint if it was run, but it is nice to have comments that appear to be relevant to the code.
      
      
      **Special notes for your reviewer**:
      docs only
      
      **Release note**:
      
      ```release-note
      NONE
      ```
      81545c29
    • Kubernetes Submit Queue's avatar
      Merge pull request #43885 from zhangxiaoyu-zidif/master · 85dfdc12
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Fix a typo
      
      Fix a typo
      
      
      
      **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 #
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      ```
      85dfdc12
  3. 02 Apr, 2017 1 commit
    • Kubernetes Submit Queue's avatar
      Merge pull request #41805 from aanm/adding-ipv6-brackets-in-kubectl-endpoint · 74c23bdf
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      kubectl: Adding IPv6 brackets for IPv6 endpoints
      
      This fixes the lack of IPv6 when printing the IP:Port tuple with kubectl
      describe command.
      Signed-off-by: 's avatarAndré Martins <aanm90@gmail.com>
      
      **What this PR does / why we need it**: This adds IPv6 brackets on IPv6 endpoints when using `kubectl describe service`
      
      **Special notes for your reviewer**: Since the IP is a string I think the fastest way to detect if it's an IPv6 was to check for the presence of : in it. Let me know what you think.
      74c23bdf
  4. 01 Apr, 2017 7 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #43933 from childsb/add_approver · 4fa902a9
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      update pkg/controller/volume/OWNER to add appropriate approvers for both volume controllers
      
      Update pkg/controller/volume approvers so that the attach/detach and binding controllers have approvers.
      4fa902a9
    • Kubernetes Submit Queue's avatar
      Merge pull request #43684 from xilabao/patch-10 · 756539f4
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      fix typo in kubeadm join -h
      
      ```
      Flags:
            --config string                Path to kubeadm config file
            --discovery-file string        A file or url from which to load cluster information
            --discovery-token string       A token used to validate cluster information fetched from the master
            --skip-preflight-checks        skip preflight checks normally run before modifying the system
            --tls-bootstrap-token string   A token used for TLS bootstrapping
            --token string                 Use this token for both discovery-token and tls-bootstrap-token
      ```
      756539f4
    • Kubernetes Submit Queue's avatar
      Merge pull request #40804 from runcom/prepull-cri · 25a87fa1
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      test/e2e_node: prepull images with CRI
      
      Part of https://github.com/kubernetes/kubernetes/issues/40739
      
      - This PR builds on top of #40525 (and contains one commit from #40525)
      - The second commit contains a tiny change in the `Makefile`.
      - Third commit is a patch to be able to prepull images using the CRI (as opposed to run `docker` to pull images which doesn't make sense if you're using CRI most of the times)
      
      Marked WIP till #40525 makes its way into master
      
      @Random-Liu @lucab @yujuhong @mrunalp @rhatdan
      25a87fa1
    • Antonio Murdaca's avatar
      test/e2e_node: prepull images with CRI · 2634f57f
      Antonio Murdaca authored
      Signed-off-by: 's avatarAntonio Murdaca <runcom@redhat.com>
      2634f57f
    • Kubernetes Submit Queue's avatar
      Merge pull request #43918 from koep/43692 · 741c0922
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 43407, 43918)
      
      Fix typo in mysql-galera example Dockerfile
      
      **What this PR does / why we need it**:
      Minor Bugfix.
      **Which issue this PR fixes**
      fixes #43692
      741c0922
    • Kubernetes Submit Queue's avatar
      Merge pull request #43407 from sjenning/selinux-npd-refactor · 659ea870
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      tests: e2e-node: refactor node-problem-detector test to avoid selinux…
      
      Fixes https://github.com/kubernetes/kubernetes/issues/43401
      
      This test creates a file in /tmp on the host and creates a HostPath volume in the container to so that the host can inject messages into the logfile being read by the node problem detector in the container.  However, selinux prohibits the container from reading files out of /tmp on the host.
      
      This PR modifies the test to create the log file in an EmptyDir volume instead, which will be properly labeled for container access.
      
      @derekwaynecarr
      659ea870
    • Kubernetes Submit Queue's avatar
      Merge pull request #43289 from tsmetana/adc-race-fix · fff5fae0
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Attach/detach controller: fix potential race in constructor
      
      **What this PR does / why we need it**:
      There is a potential race condition in the Attach/detach controller: The "constructor" first installs informer event handlers and then creates and initializes the other data structures. However there is no guarantee an event cannot arrive before the data structures required by the event handlers are ready. This may result in nil pointer derefernces and potential crashes (e.g. the nodeAdd method calls adc.actualStateOfWorld.SetNodeStatusUpdateNeeded even though the actualStateOfWorld might be still nil).
      
      It should be enough just to move the event handlers installation at the end of the constructor function.
      
      **Release note**:
      
      ```release-note
      NONE
      ```
      fff5fae0
  5. 31 Mar, 2017 29 commits