- 25 Aug, 2016 19 commits
-
-
Dr. Stefan Schimanski authored
-
Dr. Stefan Schimanski authored
-
Dr. Stefan Schimanski authored
-
Dr. Stefan Schimanski authored
-
Dominika Hodovska authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Make sure the StatusCode is taken into account in DoRaw() **What this PR does / why we need it**: Currently if there is an error (not found) the error printed out is to do with the inablity to convert an empty body into the expected json. This patch will fill in the err correctly. example of before (with NotFound error): $ kubectl top node failed to unmarshall heapster response: json: cannot unmarshal object into Go value of type []v1alpha1.NodeMetrics Now: $ kubectl top node the server could not find the requested resource (get services http:heapster:) **Which issue this PR fixes** related to bug #30818 **Special notes for your reviewer**: None **Release note**: ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Enable GC by default in Kubemark Since GC is enabled by default, we should also enable it by default in kubemark
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Kubelet code move: volume / util Addresses some odds and ends that I apparently missed earlier. Preparation for kubelet code-move ENDGAME. cc @kubernetes/sig-node
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fixed two issues of kubectl bash completion. This patch includes the fix of the following issue: • Correct the method invocation from "__kubectl_namespace_flag" to "__kubectl_override_flags" • Support bash completion if "--namespace=xxx" style flags are specified in the kubectl command Fixes #31134
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update fluent images continues #29883 fix #29782 ```release-note Reduced size of fluentd images. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add validation for KUBE_USER Malformed KUBE_USER causes error in cluster setup. cc/ @kubernetes/goog-image @Q-Lee @Amey-D Can you please review?
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue etcd3 compactor: update docs Minor fix/improvement on compactor docs.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Dynamic volume gate Rebased on #31140, only review last commit. Adds a feature-gate flag for dynamic volume provisioning alpha, defaulting to enabled to avoid breaking people. Key should be removed when support for the alpha version of this is removed.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Revert "Enable v3 Client as the default on UTs" Reverts kubernetes/kubernetes#30890 Fix flake problems (#31262)
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Skip disk eviction test on non-supported images.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Delete e2e-runner and related images https://github.com/kubernetes/test-infra/pull/444 migrates these files to test-infra
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix #30376 that broken cross-build ref: #30376
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update kube-dns changelog for 1.6 bump Fixes #29712
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Refactor the hyperkube image and add various features @cheld @zreigz @mikedanese
-
- 24 Aug, 2016 21 commits
-
-
Hongchao Deng authored
-
Erick Fejta authored
-
Lucas Käldström authored
Refactor hyperkube, remove unnecessary packages, optimize layers, bump cni version, add new features, run kube-proxy in a daemonset
-
Aditya Kali authored
Make sure KUBE_USER and KUBE_PASSWORD contains valid chars as soon as we read them from kube config.
-
Aditya Kali authored
Malformed KUBE_USER causes error in cluster setup.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Node Conformance Test: Remove unnecessary binary copy For #30122, #30174. This PR removed unnecessary dependencies in the node e2e test framework, because we've statically linked these dependencies. @dchen1107 @vishh /cc @kubernetes/sig-node @kubernetes/sig-testing
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Kubelet: implement GetNetNS for new runtime api Kubelet: implement GetNetNS for new runtime api. CC @yujuhong @thockin @kubernetes/sig-node @kubernetes/sig-rktnetes
-
Minhan Xia authored
-
Daniel Smith authored
-
Jeff Lowdermilk authored
-
Jeff Lowdermilk authored
Enabled by default to avoid breaking people, since this was turned on in 1.3.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add constants and documentation around AWS magic numbers Also, bumped max IOPS/GB to 50, it changed from 30 since last time I checked. Source: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html @kubernetes/sig-storage
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Separate test watch from zero and nonzero Recently there was spike flakes for this. See #31079. This is to split the test into two units for further digging. We need to know which one is problematic, or both.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix rc scaler watch <!-- 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**: The RC scaler uses Watch to monitor if the RC is scaled. The Watch was sent with resourceVersion=0, so the watch event it gets back starts from any point in the history, so the result is not valid. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # Probably will fix #30990 Fix #30469 **Special notes for your reviewer**: This breaks the load test because the reaper doesn't actually wait until all the pods are gone before it deletes the RC. I haven't run the node-100 test myself to verify it fixes the problem though. cc @deads2k @smarterclayton @lavalamp
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Explicitly set CLOUDSDK_CONFIG override early in e2e-runner I'm guessing this is why a number of gci-on-gke builds started failing after https://github.com/kubernetes/test-infra/pull/432 was merged - we're overriding the gcloud configuration location from the default, so the activated service account no longer works. Previously we did this service activation late, but after we'd overridden the value. I've changed it to explicitly set to a known-good value every time at the very start. cc @vishh @maisem @spxtr @fejta
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Revert revert 30090 with fix This reverts #31297 (which originally reverted #30090) and applies a fix to stop the fd leak that was exposed by #30090.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Use `make release` on Jenkins to support crossbuilds Partner PR to https://github.com/kubernetes/test-infra/pull/440 to fix https://github.com/kubernetes/test-infra/issues/393. We probably should pull the build functionality out of e2e.go entirely, but I leave that to future work. cc @luxas @david-mcmahon @fejta
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix AWS reporting "The parameter KmsKeyId requires the parameter Encrypted to be set." - use aws.String/Int/Bool functions - don't set the key to empty string, use nil instead @justinsb @kubernetes/sig-storage
-
Chao Xu authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Federation controller tests refactoring - move common func to utils cc: @quinton-hoole @kubernetes/sig-cluster-federation
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Avoid sorting lists when unnecessary I've seen ThreadSafeMap::List consuming ~30% of whole CPU usage, spending the whole time in sorting (while it is in fact completely unneded).
-