- 12 Jul, 2016 31 commits
-
-
Chao Xu authored
-
Chao Xu authored
-
k8s-merge-robot authored
Automatic merge from submit-queue fix proxy url <!-- Checklist for submitting a Pull Request Please remove this comment block before submitting. 1. Please read our [contributor guidelines](https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md). 2. See our [developer guide](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md). 3. If you want this PR to automatically close an issue when it is merged, add `fixes #<issue number>` or `fixes #<issue number>, fixes #<issue number>` to close multiple issues (see: https://github.com/blog/1506-closing-issues-via-pull-requests). 4. Follow the instructions for [labeling and writing a release note for this PR](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes) in the block below. --> ```release-note * Use the release-note-* labels to set the release note state * Clear this block to use the PR title as the release note -OR- * Enter your extended release note here ``` []() fix proxy url
-
k8s-merge-robot authored
Automatic merge from submit-queue Add "deploy" abbrev for deployments to kubectl Most of the objects have the abbreviation (short form) in kubectl, for ex. rc == replicationcontroller. It'll be useful to have an abbrev for "deployments" as well and I'm proposing to use "dpl" for it. P.S. It's my very first commit to k8s. I've signed CLA already. I've decided to create this pull request while waiting on more info in #24083. <!-- Reviewable:start --> --- This change is [<img src="http://reviewable.k8s.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/24087) <!-- Reviewable:end -->
-
k8s-merge-robot authored
Automatic merge from submit-queue Add hooks for cluster health detection Separate a function that decides if zone is healthy. First real commit for preventing massive pod eviction. Ref. #28832 cc @davidopp
-
Sergey Lukjanov authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Change storeToNodeConditionLister to return []*api.Node instead of api.NodeList for performance Currently copies that are made while copying/creating api.NodeList are significant part of scheduler profile, and a bunch of them are made in places, that are not-parallelizable. Ref #28590
-
gmarek authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Reduce tightness of coupling in NodeController Depends on #28604
-
k8s-merge-robot authored
Automatic merge from submit-queue Revert "Workardound KubeProxy failures in test framework" Reverts kubernetes/kubernetes#28015 For https://github.com/kubernetes/kubernetes/issues/25543. Revert walkaround in test framework to verify whether https://github.com/kubernetes/kubernetes/pull/28697 solved the problem. @wojtek-t
-
k8s-merge-robot authored
Automatic merge from submit-queue ListOptions: add test for ResourceVersion > 0 in List ref: #28472 Done: - Add a test for ResourceVersion > 0 in registry (cache) store List() - Fix the docs.
-
k8s-merge-robot authored
Automatic merge from submit-queue kubectl: refactor rollout history to be more configurable ChangeCauseAnnotation is hardcoded in PrintRolloutHistory and it needs to be overriden since other resources that may need to be added in `kubectl rollout history` may not use it. Instead of adding one more method in the factory, refactor the existing HistoryViewer interface to accomodate the change. @kubernetes/kubectl
-
k8s-merge-robot authored
Automatic merge from submit-queue controller/volume: simplify sync logic in syncUnboundClaim Remove all unnecessary branching logic. No actual logic changes. Code is more readable now.
-
gmarek authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Move CIDR allocation logic away from nodecontroller.go cc @fgrzadkowski @wojtek-t @mqliang
-
Michail Kargakis authored
ChangeCauseAnnotation is hardcoded in PrintRolloutHistory and it needs to be overriden since other resources that may need to be added in `kubectl rollout history` may not use it. Instead of adding one more method in the factory, refactor the existing HistoryViewer interface to accomodate the change.
-
k8s-merge-robot authored
Automatic merge from submit-queue Generates DELETE pod update operations fixes #27105 Generates DELETE pod update operations to make the code and log more intuitive. 1. main refactoring is in `kubelet/config` 2. kubelet will log if it received DELETE, just like other OPs cc @Random-Liu :)
-
gmarek authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Deprecate the term "Ubernetes" Deprecate the term "Ubernetes" in favor of "Cluster Federation" and "Multi-AZ Clusters"
-
Harry Zhang authored
Signed-off-by:Harry Zhang <harryz@hyper.sh> Combine delete with update
-
k8s-merge-robot authored
Automatic merge from submit-queue Add test case to TestPodFitsResources() of scheduler algorithm File "plugin\pkg\scheduler\algorithm\predicates", function "TestPodFitsResources()", line 199, only provide test case "one resource cpu fits but memory not", it should add test case "one resource memory fits but cpu not".
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix path for examples - storage/volume directories changed Added /volume and /storage in a couple of spots. Fixes #27978
-
k8s-merge-robot authored
Automatic merge from submit-queue Return server's representation of pod from framework pod creation functions Since PodInterface.Create returns the server's representation of the pod, which may differ from the api.Pod object passed to Create, we do the same from the framework's pod creation functions. This is useful if e.g. you create pods using Pod.GenerateName rather than Pod.Name, and you still want to refer to pods by name later on (e.g. for deletion). cc @timstclair
-
k8s-merge-robot authored
Automatic merge from submit-queue Proposal: client/server container runtime Ref #25899 #13768 Proposal for client/server container runtime CC @brendandburns @dchen1107 @kubernetes/goog-node @kubernetes/sig-node
-
Xiang Li authored
-
Davanum Srinivas authored
Fixes #27978
-
k8s-merge-robot authored
Automatic merge from submit-queue close channel to prevent buildup of wait.JitterUntil() <!-- Checklist for submitting a Pull Request Please remove this comment block before submitting. 1. Please read our [contributor guidelines](https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md). 2. See our [developer guide](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md). 3. If you want this PR to automatically close an issue when it is merged, add `fixes #<issue number>` or `fixes #<issue number>, fixes #<issue number>` to close multiple issues (see: https://github.com/blog/1506-closing-issues-via-pull-requests). 4. Follow the instructions for [labeling and writing a release note for this PR](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes) in the block below. --> Trying to look at flake in #26377 by running the test with large counts of runs. It was timing out because a `wait.JitterUntil` goroutine builds up for each of the four tests. So if you ran it a thousand times, you would end up with 4k goroutines spinning in the background. Now I create a channel and close it at the end of each test to prevent a memory leak.
-
k8s-merge-robot authored
Automatic merge from submit-queue bump cni version @mikedanese do you mind take a look and see if I miss anything?
-
Pengfei Ni authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Include inode info in container summary #28719
-
k8s-merge-robot authored
Automatic merge from submit-queue Update godeps libcontainer @vishh PTAL For #27204.
-
- 11 Jul, 2016 9 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue Migrate to kuberetes-release-dev []() This turns off the kubernetes-release-dev mirror. #28193 should have shifted all the references over, this should ensure that it's true. Along the way: Modify it so that the equal bucket and mirror is a noop for things like https://github.com/kubernetes/test-infra/pull/244.
-
k8s-merge-robot authored
Automatic merge from submit-queue resource.Builder should not alter error type from server
-
k8s-merge-robot authored
Automatic merge from submit-queue --no-header available now for custom-column Change `CustomColumnsPrinter` to have `noHeader` boolean, also changed `GetPrinter` to receive this bool and pass it through. One test `TestNewColumnPrinterFromSpecWithNoHeaders` added for checking if there is no headers in output for sure fixes #24133
-
Ron Lai authored
-
Minhan Xia authored
-
David McMahon authored
-
Zach Loafman authored
This turns off the kubernetes-release-dev mirror. #28193 should have shifted all the references over, this should ensure that it's true.
-
Maisem Ali authored
Do not depend on metadata server for auth
-
Erick Fejta authored
-