1. 12 Dec, 2016 1 commit
  2. 08 Dec, 2016 6 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #38333 from euank/more-ssl-mounts · bc28aeb8
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 37325, 38313, 38141, 38321, 38333)
      
      cluster: bindmount more cert paths
      
      **What this PR does / why we need it**:
      
      /etc/ssl/certs is currently mounted through in a number of places.
      However, on Gentoo and CoreOS (and probably others), the files in
      /etc/ssl/certs are just symlinks to files in /usr/share/ca-certificates.
      
      For these components to correclty work, the target of the symlinks needs
      to be available as well.
      
      This is especially important for kube-controller-manager, where this
      issue was noticed.
      
      
      
      **Special notes for your reviewer**:
      
      This change was originally part of #33965, but was split out for ease of
      review.
      
      **Release note**:
      
      ```release-note
      NONE
      ```
      bc28aeb8
    • Kubernetes Submit Queue's avatar
      Merge pull request #38321 from timstclair/misc-fix · 04cd4ae4
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 37325, 38313, 38141, 38321, 38333)
      
      Decrease expected lower bound for misc CPU
      
      Fixes https://github.com/kubernetes/kubernetes/issues/34990
      
      We started enforcing expectations on the `misc` system container in https://github.com/kubernetes/kubernetes/pull/37856, but the CPU usage tends to be lower than the `kueblet` & `runtime` containers (to be expected). For simplicity, I lowered the lower bound for all system containers.
      04cd4ae4
    • Kubernetes Submit Queue's avatar
      Merge pull request #38141 from bprashanth/lb_testing · 350c14b8
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 37325, 38313, 38141, 38321, 38333)
      
      Cleanup firewalls, add nginx ingress to presubmit
      
      Make the firewall cleanup code follow the same pattern as the other cleanup functions, and add the nginx ingress e2e to presubmit. 
      
      Planning to watch the test for a bit, and if it works alright, I'll add the other Ingress e2e to post-submit merge blocker.
      350c14b8
    • Kubernetes Submit Queue's avatar
      Merge pull request #38313 from alejandroEsc/ae/fix1 · 94ed9390
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 37325, 38313, 38141, 38321, 38333)
      
      typo found with controller comment for framework_test.
      
      **What this PR does / why we need it**: fix test comment typo
      
      
      **Release note**:
      `NONE`
      94ed9390
    • Kubernetes Submit Queue's avatar
      Merge pull request #37325 from ivan4th/fix-e2e-with-complete-pods-in-kube-system-ns · 4b44926f
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 37325, 38313, 38141, 38321, 38333)
      
      Fix running e2e with 'Completed' kube-system pods
      
      As of now, e2e runner keeps waiting for pods in `kube-system` namespace to be "Running and Ready" if there are any pods in `Completed` state in that namespace.
      This for example happens after following [Kubernetes Hosted Installation](http://docs.projectcalico.org/v2.0/getting-started/kubernetes/installation/#kubernetes-hosted-installation) instructions for Calico, making it impossible to run conformance tests against the cluster. It's also to possible to reproduce the problem like that:
      ```
      $ cat testjob.yaml
      apiVersion: batch/v1
      kind: Job
      metadata:
        name: tst
        namespace: kube-system
      spec:
        template:
          metadata:
            name: tst
          spec:
            containers:
            - name: tst
              image: busybox
              command: ["echo",  "test"]
            restartPolicy: Never
      $ kubectl create -f testjob.yaml
      $ go run hack/e2e.go -v --test --test_args='--ginkgo.focus=existing\s+RC'
      ```
      4b44926f
    • Kubernetes Submit Queue's avatar
      Merge pull request #36735 from YuPengZTE/devHTTP · 72e7adb6
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      type HttpProxyCheck should be HTTPProxyCheck
      
      **What this PR does / why we need it**:
      Change HttpProxyCheck to HTTPProxyCheck
      **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**:
      golint
      **Release note**:
      
      ```release-note
      ```
      Signed-off-by: 's avataryupeng <yu.peng36@zte.com.cn>
      72e7adb6
  3. 07 Dec, 2016 33 commits