- 19 Jul, 2016 40 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue Add extensions/replicaset to federation-apiserver Add extensions/replicaset for federated scheduler (#24038) as all k8s api objects were removed in #23959 Please review only the very last one commit. #19313 #23653 @nikhiljindal @quinton-hoole, @deepak-vij, @XiaoningDing, @alfred-huangjian @mfanjie @huangyuqi @colhom
-
k8s-merge-robot authored
Automatic merge from submit-queue Don't do string(int) This is causing https://github.com/kubernetes/kubernetes/pull/29147 to fail the unit test, because the bug prints control character to the test log, and the grep at this [line](https://github.com/kubernetes/kubernetes/blob/master/hack/make-rules/test.sh#L190) returns `Binary file (standard input) matches` error. I don't know why this bug isn't caught before.
-
Phillip Wittrock authored
Revert "Switched watches in tests require ResourceVersion to be passed"
-
Antoine Pelisse authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix a typo in my Github username [madhusudancs].
-
k8s-merge-robot authored
Automatic merge from submit-queue Unable to have optional message slice When making a message slice optional, we need to handle one more conditional case in the rewriter. @wojtek-t
-
Madhusudan.C.S authored
-
Chao Xu authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Switched watches in tests require ResourceVersion to be passed For testing the Watches are not sufficient in that it might miss the event of transitioning a Pod from one state to another which might happen before we start Watching events. To remedy this, I'm proposing to switch to Gets to always read the actual state of a Pod. @smarterclayton this fixes https://github.com/openshift/origin/issues/9192 and hopefully all `gave up waiting for pod...` flakes []()
-
jianhuiz authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Use Infof/Warningf when appropriate When we use a format string, we should use Infof/Warningf instead of Info/Warning
-
k8s-merge-robot authored
Automatic merge from submit-queue Make clear where cherrypick PRs are being created
-
k8s-merge-robot authored
Automatic merge from submit-queue Extra debug information in HPA events Fixes: #29004
-
k8s-merge-robot authored
Automatic merge from submit-queue Delete redundant if condition The case `containerStatus == nil` has already been checked just above. It's redundant here.
-
k8s-merge-robot authored
Automatic merge from submit-queue federation: Adding namespaces API Adding namespaces API to federation-apiserver and updating the federation client to include namespaces -------------------------- Original description: This adds the namespaces API to federation-apiserver. The first commit is https://github.com/kubernetes/kubernetes/pull/26142.
-
Davanum Srinivas authored
When we use a format string, we should use Infof/Warningf instead of Info/Warning
-
k8s-merge-robot authored
Automatic merge from submit-queue Retry updating deployment only on update conflict error
-
k8s-merge-robot authored
Automatic merge from submit-queue Remove GOMAXPROCS() calls because they are unnecessary Now we're setting GOMAXPROCS when every binary starts up, but we don't have to do that anymore, since we've upgraded to Go 1.6 Documentation for it: > func GOMAXPROCS(n int) int > GOMAXPROCS sets the maximum number of CPUs that can be executing simultaneously and returns the previous setting. If n < 1, it does not change the current setting. The number of logical CPUs on the local machine can be queried with NumCPU. This call will go away when the scheduler improves. A simple program to prove it's unnecessary: ```go package main import ( "fmt" "runtime" ) func main(){ numCPUBefore := runtime.GOMAXPROCS(runtime.NumCPU()) numCPUAfter := runtime.GOMAXPROCS(runtime.NumCPU()) fmt.Println(numCPUBefore, numCPUAfter) } ``` Output with Go 1.4.2: `1 4` Output with Go 1.6.2: `4 4` So I think we should remove calls to GOMAXPROCS now, and it should be pretty straightforward @thockin @wojtek-t @gmarek @lavalamp @vishh -
Marcin Wielgus authored
-
nikhiljindal authored
-
nikhiljindal authored
-
nikhiljindal authored
-
k8s-merge-robot authored
Automatic merge from submit-queue glog.Warning output content not complete, lack of string fomat "%s"
-
k8s-merge-robot authored
Automatic merge from submit-queue Reuse existing Resource struct instead of new resourceRequest @davidopp
-
k8s-merge-robot authored
Automatic merge from submit-queue Extend logging for GCE load balancer creation For #29189 debugging.
-
k8s-merge-robot authored
Automatic merge from submit-queue Improve quota controller performance by eliminating unneeded list calls Previously, when syncing quota usage, we asked each registered `Evaluator` to determine the usage it knows to track associated with a `GroupKind` even if that particular `GroupKind` had no associated resources under quota. This fix makes it that when we sync a quota that just had only `Pod` related compute resources, we do not also calculate the usage stats for things like `ConfigMap`, `Secret`, etc. per quota. This should be a significant performance gain when running large numbers of `Namespace`'s each with `ResourceQuota` that tracks a subset of resources. /cc @deads2k @kubernetes/rh-cluster-infra
-
k8s-merge-robot authored
Automatic merge from submit-queue update go to 1.6.3 <!-- 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 updated go version to 1.6.3 ```
-
k8s-merge-robot authored
Automatic merge from submit-queue Register the federation core API conversion and default functions. This was removed by mistake in 9eb42f (PR #25978). Reverting some of those changes and adding the new mechanism to autogenerate conversions for the new types that we might define in this API group in the future. cc @kubernetes/sig-cluster-federation @thockin @lavalamp please take a look at this once even if the PR merges before you get a chance to take a look. @thockin particularly see the `federation/apis/core/v1/doc.go` file. Fixes issue #28615
-
lixiaobing10051267 authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Both the file name and directory of fake docker manager are wrong In file "docs/devel/kubemark-guide.md b/docs/devel/kubemark-guide.md", line 232 "manager with `pkg/kubelet/fake-docker-manager.go`" here both the name and directory of fake docker manger are wrong, it should be "pkg/kubelet/dockertools/fake_manager.go".
-
k8s-merge-robot authored
Automatic merge from submit-queue Don't repeat the program name in healthCheckCommand.String() The name is in both `Path` and `Args[0]`, so start printing args at 1. Also refactor to avoid an extra space character in the output. I pondered whether `healthCheckCommand.String()` should check if the slice is empty, to avoid a panic, but it didn't check for `Cmd==nil` before. Fixes #29107
-
Wojciech Tyczynski authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Retry assigning CIDRs Fix #28879, ref #29064 cc @bgrant0607 @bprashanth @alex-mohr
-
Michal Fojtik authored
-
k8s-merge-robot authored
Automatic merge from submit-queue include metadata in third party resource list serialization Third party resource listing does not include important metadata such as resourceVersion and apiVersion. This commit includes the missing metadata and also replaces the string templating with an anonymous struct.
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix disappearing pods in scheduler Fix #29098
-
Wojciech Tyczynski authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix reversed order of variables The order of variables in log is reversed.
-
k8s-merge-robot authored
Automatic merge from submit-queue Scheduledjob test cont. This continuation of #25737. @erictune @caesarxuchao ptal []()
-
k8s-merge-robot authored
Automatic merge from submit-queue File "cluster/kube-env.sh" not exist In file "docs/devel/developer-guides/vagrant.md", line 281: "your environment in `cluster/kube-env.sh`:" Here file "cluster/kube-env.sh" not exist.
-