- 21 Sep, 2016 14 commits
-
-
Madhusudan.C.S authored
Minor Ingress tests cleanup, that includes service shard and GCE resource cleanups in underlying clusters.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue delete private interface with no references in package <!-- 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**: code quality. **Which issue this PR fixes**: does not fix anything. removes unused interface. **Special notes for your reviewer**: It does not do anything. Let us remove it. **Release note**: <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue compensate for raft/cache delay in namespace admission When attempting to create an object in a just-created namespace, the admission plugin can reject the creation attempt for two reasons: 1. The cache of existing namespaces has not observed the creation watch event yet. There was already compensation to perform a live lookup if the namespace was not found in the cache. 2. The live lookup can be performed against a non-leader in a HA etcd setup, and can return NotFound if the non-leader etcd has not observed the creation. This PR adds a delay, then rechecks the cache before proceeding with the live lookup. This gives both the cache and the backing storage more time to observe the create, before failing the request.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue gce/util: $replica-pd --> $replica_pd \cc @quinton-hoole @madhusudancs fixes #32997
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Move generated openAPI specs out of genericapiserver and make it configurable A follow up to #31468 Generated OpenAPI Spec does not belong to genericapiserver package. A new package "generated" created in hope of all generated codes goes into it in future. Openapi folder of that package contains generated definitions and generic API server will accept the definition map as a configuration parameter. Reference: #13414
-
Jordan Liggitt authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue stop etcd watcher when watch chan is closed When startWatching() stops due to the watch chan is closed, the watcher could still keeps running in the background. When this case happen, we should stop the watcher entirely and close ResultChan() too.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue federation ingress controller: Fixing a panic by initialising the map before using it Ref https://github.com/kubernetes/kubernetes/issues/32733#issuecomment-248428635 cc @kubernetes/sig-cluster-federation @quinton-hoole
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Only approve evictions when budgets would stay enforced after. Prior to this, we would approve eviction as long as the current state of the pods matched the budget. The new version requires that after the eviction, the pods would still match the budget. Also update tests to match.
-
Matt Liggett authored
Prior to this, we would approve eviction as long as the current state of the pods matched the budget. The new version requires that after the eviction, the pods would still match the budget. Also update tests to match.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Stop referring to loop variable inside closure. Prior to this, I was actually running the same (last) test 5 times in a row. :-( Fixes #33137
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix the properties file for node e2e cri validation. I fixed this locally before, but accidentally missed in the PR. Sorry about that. This time, I've tried myself, it should work. @yujuhong
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue In error, the first letter is low-case letter
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix backward compatibility issue caused by promoting initcontainers f… #31026 moves init-container feature from alpha to beta, but only took care the backward compatibility for pod specification, not deal with status. For status, it simply moved from `pods.beta.kubernetes.io/init-container-statuses` to `pods.beta.kubernetes.io/init-container-statuses` instead of introducing one more pods.beta.kubernetes.io/init-container-statuses. This breaks when the cluster is running with 1.4, but the user is still running with kubectl 1.3.x. Fixed #32711
-
- 20 Sep, 2016 26 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Bump up GCI version. ```release-note Upgrading Container-VM base image for k8s on GCE. Brief changelog as follows: - Fixed performance regression in veth device driver - Docker and related binaries are statically linked - Fixed the issue of systemd being oom-killable ``` Fixes #32596 This needs a cherrypick into v1.4 release branch because it is fixing v1.4 release blocking issues. This patch is easy and safe to rollback in case of emergencies. @vishh can you please review? Fixes #32596 and many other issues. cc/ @kubernetes/goog-image FYI -
Kubernetes Submit Queue authored
Automatic merge from submit-queue Move HighWaterMark to the top of the struct in order to fix arm I haven't tested this yet, but let's see how e2e tests react. It should be no difference at all except for that it will fix arm. etcd has had to do this some times (and I think there are some fixes like this that are needed for etcd as well) For reference see: https://golang.org/pkg/sync/atomic/ This should be a cherrypick-candidate for v1.4.1 (as I understand it, v1.4.0 has clearly left the cherrypickable state) @lavalamp @pwittrock @xiang90 @smarterclayton
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue use groupmetafactoryregistry Switches all groups to the new API registration mechanism. @ncdc ptal
-
Matt Liggett authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Viper direct bindings to TestContext struct with hierarchichal suppor… Part of #31453 to support hierarchichal parameters. This one does so for density, paves way for other tests as well.
-
Random-Liu authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue CRI: Add CRI validation suite Based on https://github.com/kubernetes/kubernetes/pull/32903. This PR added a separate test suite for CRI. I'll enable this in test-infra and make this publicly visible via https://k8s-testgrid.appspot.com/. @yujuhong @yifan-gu @feiskyer /cc @kubernetes/sig-node
-
mbohlool authored
-
mbohlool authored
-
Amey Deshpande authored
Brief changelog compared to gci-dev-54-8743-3-0: - Fixed performance regression in veth device driver - Docker and related binaries are statically linked - Fixed the issue of systemd being oom-killable - Updated built-in kubelet version to 1.3.7 - add ethtool and ebtables binaries expected by kubelet Fixes #32596
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue [Controller Manager] Fix job controller hot loop <!-- 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:** Fix Job controller hotloop on unexpected API server rejections. **Which issue this PR fixes** Related issue is #30629 **Special notes for your reviewer:** @deads2k @derekwaynecarr PTAL.
-
nikhiljindal authored
-
Hongchao Deng authored
-
Lucas Käldström authored
-
jayunit100 authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix a spell mistake **What this PR does / why we need it**: this should be "every" not 'ever' **Which issue this PR fixes**: **Special notes for your reviewer**: **Release note**: <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```release-note ```
-
Random-Liu authored
Kubernetes HEAD and docker v1.11.2 with CRI enabled.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Work around the etcd watch issue fix #32770 Underlyingly, differentiating context will unshare the grpc stream.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add myself to job/scheduledjob tests @fejta updated the test owners again :)
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue kubelet: Add a hidden flag to enable docker CRI integration for testing
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add additional delay to the es logging e2e test to make it stable Fix #32804
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue typo fixes **What this PR does / why we need it**: Fixes typographical errors. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: None **Special notes for your reviewer**: None **Release note**: None
-
Hongchao Deng authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add storage api group to hack/update-codegen.sh Add it to the script then run it in the second commit. 1.4 needs the same change, I'll do it in my other PR.
-
Mik Vyatskov authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Extend kubemark cluster startup timeout to account for log route crea… Fix #32441 (see https://github.com/kubernetes/kubernetes/issues/32441#issuecomment-248308161) cc @wojtek-t
-