- 29 Sep, 2016 7 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Change minion to node Continuation of #1111 I tried to keep this PR down to just a simple search-n-replace to keep things simple. I may have gone too far in some spots but its easy to roll those back if needed - just let me know. I avoided renaming `contrib/mesos/pkg/minion` because there's already a `contrib/mesos/pkg/node` dir and fixing that will require a bit of work due to a circular import chain that pops up. So I'm saving that for a follow-on PR. Signed-off-by:Doug Davis <dug@us.ibm.com>
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Rewrite summary e2e test to check metric sanity Take two, forked from https://github.com/kubernetes/kubernetes/pull/28195 Adds a test library that extends the ginkgo matchers to check nested data structures. Then uses the new matcher library to thoroughly check the validity of every field in the summary metrics API. This approach is more flexible than the previous approach since it allows for different tests per-field, and is easier to add case-by-case exceptions. It also places the lower & upper bounds side-by-side, making the test much easier to read & reason about. Most fields are expected to be within some bounds. This is not intended to be a performance test, so metric bounds are very loose. Rather, I'm looking to check that the values are sane to catch bugs like #27194 Fixes #23411, https://github.com/kubernetes/kubernetes/issues/31989 /cc @kubernetes/sig-node
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add fewer more owners for packages in kubelet
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue kubeadm: default to using a private range for service subnet We are currently using a subnet that is reserved for ISPs. Private network administrators don't control this space. Default to a subnet that private network administrators do control. @errordeveloper @kubernetes/sig-cluster-lifecycle
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Pod creation moved outside of docker manager tests **What this PR does / why we need it**: It cleans up docker manager tests a little. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: related to #31550 **Special notes for your reviewer**: I don't claim that working on this issue is finished, I cleaned up the tests just a bit **Release note**: ```release-note NONE ```
-
Yu-Ju Hong authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix package name bug Fix https://github.com/kubernetes/client-go/issues/4#issuecomment-250061886 The copy.sh used to accidentally rewrite package name. This PR fixes that. It also picked up other changes in the code base to the staging area. @mqliang
-
- 28 Sep, 2016 33 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue docs/networking: update IPv6 support section Update the state of IPv6 support. Docker now supports IPv6, but network plugins and internal data structures are the main pain points now.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue CRI: Add more docs abount pod sandbox config in CreateContainerRequest. Makes it clear that the config will not change during the pod lifecycle. The field is only for convenience.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Make the restart test restart the nodes without a mig rolling update. This is one approach to fix #33113. I switched from using a mig rolling-update to just pushing the reset button on the nodes and then waiting for their boot IDs to change.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Store RequestInfo in Context instead of RequestInfoResolver dependency injection **Depends on https://github.com/kubernetes/kubernetes/pull/33478** The `RequestInfoResolver` is used in the proxy handler and in the authorization code. It is passed through half of the apiserver code base to be available at those locations. This PR uses the context instead, which is our natural dependency injection mechanism in the handlers. `RequestInfo` and all tooling around is moved to `pkg/apiserver/request` temporarily to avoid dependency cycles. This is necessary as long as `pkg/apiserver` implements the proxy and other handlers. Those might move to `pkg/apiserver/handlers` probably later.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Annouce beta garbage collectionin CHANGELOG announce beta garbage collection in 1.4.0 CHANGELOG; copy behavior change of DELETE operation to 1.4.0 CHANGELOG.
-
Dan Williams authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue kubeadm: add OWNERS file I'm picking @luxas @errordeveloper and me as the initial code reviewers. Happy to add others
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Use abstract cache.NewListWatchFromClient to make the code clean
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Proposal: Dramatically Simplify Kubernetes Cluster Creation repost of #30360 closes #30360
-
Chao Xu authored
copy behavior change of DELETE to 1.4.0 changelog
-
Mike Danese authored
-
Tim St. Clair authored
-
Tim St. Clair authored
-
Eric Paris authored
fixup godep
-
deads2k authored
-
deads2k authored
-
Dawn Chen authored
fix godeps
-
Mike Danese authored
-
Luke Marsden authored
Initial commit for proposal from https://docs.google.com/document/d/1BO6JB16L27XFN-pmnFP_otvKW2cFxE-ysehI4ZJnYBo/edit
-
Doug Davis authored
Contination of #1111 I tried to keep this PR down to just a simple search-n-replace to keep things simple. I may have gone too far in some spots but its easy to roll those back if needed. I avoided renaming `contrib/mesos/pkg/minion` because there's already a `contrib/mesos/pkg/node` dir and fixing that will require a bit of work due to a circular import chain that pops up. So I'm saving that for a follow-on PR. I rolled back some of this from a previous commit because it just got to big/messy. Will follow up with additional PRs Signed-off-by:Doug Davis <dug@us.ibm.com>
-
Mike Danese authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Simplify genericapiserver tests - create empty GenericApiServier object outside helper - set default Config values everywhere because they are set anyway
-
Dr. Stefan Schimanski authored
-
Dr. Stefan Schimanski authored
... in order to replace the manual RequestInfoResolver dependency injection through out the code.
-
Joe Finney authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue promote contrib/mesos to incubator Fixes https://github.com/kubernetes/kubernetes/issues/33283 `contrib/mesos` has moved to https://github.com/kubernetes-incubator/kube-mesos-framework. Docs are updated here https://github.com/kubernetes/kubernetes.github.io/pull/1339
-
Dr. Stefan Schimanski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Move SELinux proposal to docs/design Moves the proposal into the docs/design directory, as should have happened long ago.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Use protobufs by default in e2e test clients
-
deads2k authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix TestCreateWithNonExistentOwner Fix #30228 As https://github.com/kubernetes/kubernetes/issues/30228#issuecomment-248779567 described, the GC did delete the garbage, it's the test logic failed. The test used to rely on `gc.QueuesDrained()`, which could return before the GC finished processing. It seems to be the only possible reason of the test failure. Hence, this PR changed the test to poll for the deletion of garbage.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue cache: remove obsolete internal package name pkg/controller/framework is not a thing since https://github.com/kubernetes/kubernetes/pull/32718 @mikedanese @wojtek-t
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Move orphaned Pod deletion logic to PodGC cc @mwielgus @mikedanese @davidopp
-