- 05 Oct, 2016 16 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Tweak summary test memory expectations To handle recent flakes of the summary test (https://k8s-testgrid.appspot.com/google-node#kubelet-flaky-gce-e2e)
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue hack: run openapi-spec as part of update-all.sh @gmarek ptal
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Improve source ip preservation test, fail the test instead of panic. From #31085. The source IP preserve test starts to be flake again. Sending out this PR to get rid of panicing and log the unexpected output for future investigation. @freehan
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue remove the tmp file
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix loopback client config for integration tests Wires an authenticator/authorizer pair much closer to what the actual master start does. Several pulls I have in progress require this. @liggitt second commit wiring changes.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue [Client-gen] Let versioned client use versioned options i.e., use v1.ListOptions, v1.DeleteOptions when possible. Remove the extension/v1beta1.ListOptions, because it's exactly the same as v1.ListOptions, and is not referred throughout the code base. After its removal, I register v1.ListOptions during extensions/v1beta1 scheme registration. First three commits are manual changes. Fix #27753 cc @lavalamp
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Remove the flannel experimental overlay <!-- 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**: It removes the deprecated flannel overlay integration in kubelet. It's completely unnecessary now with CNI which can handle everything smoothly when flannel is running in a daemonset. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #17795, #30589 cc @kubernetes/sig-network @thockin @freehan @bprashanth @yujuhong @dchen1107
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add a check for file size if the reading content returns empty In order to debug the flaky tests for writing/reading files via contains, this PR adds a check for file size if reading returns empty content.
-
Chao Xu authored
-
Chao Xu authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix kubelet perf data to make it work again for perfdash. Addresses https://github.com/kubernetes/kubernetes/pull/30333#issuecomment-248791257. Add the "node" label back to fix kubelet perf dash. At least for now, we still need original perfdash to catch summary api performance regression. /cc @coufon @yujuhong
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix apiserver startup check Startup detection logic was broken. The integration tests weren't checking it because kube integration works differently that openshift integration. :( @liggitt You at least knew this existed. ptal.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add the original summary test back
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Cleanup netexec image and usage. Get tests onto 1.7 and fix a bug in netexec's http handler
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue kubeadm: refactor config 1) break object into substructures 2) seperate a config object for master and node 3) centralize defaulting and validation Hacked til it compiled. Have not done 3 yet. Step one of #33715
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue CRI: Remove the mount name and port name. Per discussion on https://github.com/kubernetes/kubernetes/issues/33873. Currently the mount name is not being used and also involves some incorrect usage (sometimes it's referencing a mount name, sometimes it's referecing a volume name), so we decide to remove it from CRI. The port name is also not used, so remove it as well. Fix #33873 Fix #33526 /cc @kubernetes/sig-node @kubernetes/sig-rktnetes
-
- 04 Oct, 2016 24 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Document selinux considerations in wordpress-mysql example Fixes #31269. Even though host path is unsuitable for production environments, it is an option in the wordpress-mysql example. When I followed this example on a RHEL 7.2 system I had issues with selinux.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue hack: Update cherry-pick script to include original PR subject <!-- 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**: Updates the cherrypick script to include the original PR subject. We need it because I know nothing about the original PR based off a number and this is more expressive. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: 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 ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue e2e.go / kops: Add --kops-kube-version **What this PR does / why we need it**: This adds a flag to override the version we're deploying with kops for e2es. (The kops experience is disconnected from the actual source tree we're running tests from, which is similar to GKE.)
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Enable kubectl describe rs to work when apiserver does not support pods Fixes https://github.com/kubernetes/kubernetes/issues/33309 Similar to https://github.com/kubernetes/kubernetes/pull/32823 Small fix for easy cherrypicking in 1.4.1. Eventually we want to fix all describers: https://github.com/kubernetes/kubernetes/issues/32883 cc @kubernetes/sig-cluster-federation
-
bprashanth authored
-
bprashanth authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue CRI: Implement temporary ImageStats in kuberuntime_manager For #33048 and #33189. This PR: 1) Implement a temporary `ImageStats` in kuberuntime_manager.go 2) Add container name label on infra container to make the current summary api logic work with dockershim. I run the summary api test locally and it passed for me. Notice that the original summary api test is not showing up on CRI testgrid because it was removed yesterday. It will be added back in https://github.com/kubernetes/kubernetes/pull/33779. @yujuhong @feiskyer
-
Zach Loafman authored
This adds a flag to override the version we're deploying with kops for e2es. (The kops experience is disconnected from the actual source tree we're running tests from, which is similar to GKE.)
-
Jess Frazelle authored
Signed-off-by:Jess Frazelle <acidburn@google.com>
-
nikhiljindal authored
-
Yifan Gu authored
-
Yifan Gu authored
Per discussion on https://github.com/kubernetes/kubernetes/issues/33873. Currently the mount name is not being used and also involves some incorrect usage (sometimes it's referencing a mount name, sometimes it's referecing a volume name), so we decide to remove it from CRI. The port name is also not used, so remove it as well.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue CRI: Enable custom infra container image A minor fix to enable custom infra container image ref #29478 - Need to address: Not sure how do deal with infra image credential, leave it as it is today. Should we allow user to specify credentials in pod yaml?
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue CRI: Add init containers This PR adds init containers support in CRI. CC @yujuhong @Random-Liu @yifan-gu Also CC @kubernetes/sig-node @kubernetes/sig-rktnetes
-
MrHohn authored
-
Tim St. Clair authored
-
deads2k authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Migrate EqualPriority in scheduler to map-reduce-like framework Ref #24246
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue stop plumbing options to start The API server should have sufficient information to start itself without relying on an `options` object from a different packages focused on CLI interaction. This provides that separation @liggitt distinct from other changes
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Typos and englishify pkg/volume <!-- 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**: Just typos **Which issue this PR fixes**: None **Special notes for your reviewer**: Just typos **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`. --> `NONE`
-
Michail Kargakis authored
-
Wojciech Tyczynski authored
Revert "move pod networking tests common"
-
deads2k authored
-
Marek Grabowski authored
-