- 08 Jul, 2016 5 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue Node E2E: Use waiting reason to figure out image pulling error. Addresses https://github.com/kubernetes/kubernetes/pull/28323#issuecomment-230002158, using `Waiting` reason to check whether the image pulling failures as expected. @yujuhong []()
-
k8s-merge-robot authored
Automatic merge from submit-queue Node E2E: Disable kubenet for local node e2e test. After https://github.com/kubernetes/kubernetes/pull/28196, we must manually setup cni and nsenter in local node to run `make test_e2e_node`, which may not be necessary for local development. I've tried to move cni downloading logic into `BeforeSuite`, however it is still hard to figure out who should install nsenter, manually installed by every developer? in the `setup_host.sh` script? in `BeforeSuite`? This PR: * Added a flag to disable kubenet and disabled kubenet in local test. * Cleaned up the CNI installation logic a bit. /cc @yujuhong @freehan []()
-
k8s-merge-robot authored
Automatic merge from submit-queue Remove reflection path in meta.Accessor Callers are required to implement their interfaces, removes the potential for mistakes. We have a reflective test pkg/api/meta_test.go#TestAccessorImplementations that verifies that all objects registered to the scheme properly implement their interfaces. @wojtek-t this may need an additional test or two, but I think this is a net win over the current state (where people fallback to reflection without being aware of it).
-
k8s-merge-robot authored
Automatic merge from submit-queue don't migrate files you can't access If you can't access a file, you shouldn't try to migrate it. Ref https://github.com/openshift/origin/issues/9581 @fabianofranz
-
Erick Fejta authored
Fix mungedocs TOC generation for duplicate headers
-
- 07 Jul, 2016 35 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue Autoscaling should be part of clientset.Adaption @mfojtik
-
k8s-merge-robot authored
Automatic merge from submit-queue The notes are inconsistent with the code In file "pkg/client/cache/store.go, the notes of line 102 "name and namespace" is inconsistent with line 103 "return parts[0], parts[1], nil", because parts[0] is namespace, and parts[1] is name, It is easy to be confused, and better to modify the notes to "namespace and name".
-
k8s-merge-robot authored
Automatic merge from submit-queue Validation: Make validation func return error strings Part of an ongoing series of validation cleanups. This centralizes the error strings next to the code that checks the error conditions. Future commits will refine the messages further and provide more utility validators. I'm OK if this doesn't go into 1.2, but I am tired of rebasing :) I suggest commit-by-commit review, which should go pretty quickly. This was largely mechanical. <!-- 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/21240) <!-- Reviewable:end -->
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix the way addon-manager handles non-namespaced objects Fixes #28451 cc @wojtek-t
-
Tim St. Clair authored
-
Tim St. Clair authored
Fix TOC links in the presence duplicate headers.
-
k8s-merge-robot authored
Automatic merge from submit-queue Remove unbalanced right-paren in influxdb-pv.yaml fixes #28620
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix problem specifying fqdn:port in command line When specifying --server in kubectl for example, we end up with failure if you use "localhost:8080" instead of "127.0.0.1:8080". This is because of the way url.Parse works as shown in snippet: https://play.golang.org/p/luD57S6sEz Essentially localhost ends up as the Scheme and NOT as the Host. So we add another check to make sure we prepend the scheme when Host ends up being empty as well. Tested with "kubectl --server localhost:8080 get po" Fixes #2967
-
k8s-merge-robot authored
Automatic merge from submit-queue clean up dup code for kubelet `RunKubelet` is called elsewhere, hence we should keep it that way. Fixes #25345
-
k8s-merge-robot authored
Automatic merge from submit-queue Fixed a little typo in Cassandra example Readme Just a little fix for a typo in the Cassandra Cluster Example. []()
-
k8s-merge-robot authored
Automatic merge from submit-queue Move ActiveDeadlineSeconds implementation into a kubelet sync observer The first commit is from: https://github.com/kubernetes/kubernetes/pull/24344 The second commit moves the code for enforcement around active deadlines into a kubelet sync observer pattern. It groups code that used to be scattered across the kubelet. <!-- 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/24705) <!-- Reviewable:end -->
-
k8s-merge-robot authored
Automatic merge from submit-queue Cleanup third party (pt 2) Move forked-and-hacked golang code to the forked/ directory. Remove ast/build/parse code that is now in stdlib. Remove unused shell2junit
-
k8s-merge-robot authored
Automatic merge from submit-queue Remove cmd/integration test Fix #24440 After few cleanup PRs: https://github.com/kubernetes/kubernetes/pull/27182 https://github.com/kubernetes/kubernetes/pull/27535 https://github.com/kubernetes/kubernetes/pull/26016 The only things that are being tested here is: - starting master components without any verification (so if it didn't start, it will still work :P) - checking if kubelet is starting containers from http manifest. The latter is already tested in: https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/config/http_test.go#L54 So the test is now useless, at the same time, significantly increasing time spent on integration tests. @lavalamp @mikedanese @spxtr @fejta
-
k8s-merge-robot authored
Automatic merge from submit-queue Remove unneeded continute very minor but I noticed and it and it bugged me :-) Signed-off-by:Doug Davis <dug@us.ibm.com>
-
k8s-merge-robot authored
Automatic merge from submit-queue s/positive/negative/ in the error message I think we meant to imply that "if the error isn't real" then update the exceptions file - which to me means "false negative", ie. false failure. Signed-off-by:Doug Davis <dug@us.ibm.com>
-
allenmiller authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Mount r/w GCE PD disks with -o discard As per https://cloud.google.com/compute/docs/disks/add-persistent-disk#formatting. Fixes #23258
-
derekwaynecarr authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Remove br_netfilter warning in kube-proxy Many distros have this module linked in, generating a spurious error. Fixes #23385
-
k8s-merge-robot authored
Automatic merge from submit-queue MESOS: Support a pre-installed km binary at a well known, agent-local path fixes #26930
-
k8s-merge-robot authored
Automatic merge from submit-queue Represent unversioned.Time correctly in swagger spec unversioned.Time previously represented as "string" type with no format while the correct representation should also have "date-time" as format. fixes #2968
-
k8s-merge-robot authored
Automatic merge from submit-queue break integration tests into seperate packages so that they run in parallel If this is broken then our tests aren't threadsafe. ref #25940
-
Klaus Ma authored
-
k8s-merge-robot authored
Automatic merge from submit-queue api: validate generation updates @bprashanth @liggitt PTAL
-
Andrea Cosentino authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Log available pods of deployments when scaling down old RS Ref #26834 []()
-
k8s-merge-robot authored
Automatic merge from submit-queue build: fixed ${KUBE_ROOT} prefix for build scripts Running `./make-build-image.sh` command inside the `build` directory doesn't work: ```sh $ cd build $ ./make-build-image.sh ./../build/common.sh: line 32: hack/lib/init.sh: No such file or directory ``` This PR adds `${KUBE_ROOT}` prefix for the `source` bash function. Also I added braces to unify the code style. []() -
k8s-merge-robot authored
Automatic merge from submit-queue Cleanup hack/ Dockerfiles <!-- 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 Small improvements to hack/ Dockerfiles ``` []()
-
Michail Kargakis authored
-
Mike Danese authored
Signed-off-by:Mike Danese <mikedanese@google.com>
-
Mike Danese authored
Signed-off-by:Mike Danese <mikedanese@google.com>
-
Mike Danese authored
Signed-off-by:Mike Danese <mikedanese@google.com>
-
k8s-merge-robot authored
Automatic merge from submit-queue Change redis image gcr Follow up https://github.com/kubernetes/kubernetes/pull/27577#discussion_r67809871: > Any chance we can move these images somewhere in gcr.io? I pushed `kubernetes/redis:v1` to `gcr.io/google_containers/redis:v1`. []()
-
k8s-merge-robot authored
Automatic merge from submit-queue Log all image deletion errors instead of just the last one #27169
-
k8s-merge-robot authored
Automatic merge from submit-queue Make kubectl help strings consistent
-